I need to get author id via wordpress json api.
e.g :
http://eng.search.wordpress.com/?q=apple&page=2&s=date&f=json
The output is :
[{“title”:”Rumor: Ya se habla del lanzamiento del Samung Galaxy S IV
para marzo de
2013″,”link”:”http://techyzmundo.com/2012/11/15/rumor-ya-se-habla-del-lanzamiento-del-samung-galaxy-s-iv-para-marzo-de-2013/”,”epoch_time”:”1352993240″,”author”:”Techyzmundo”,”guid”:”http://techyzmundo.com/2012/11/15/rumor-ya-se-habla-del-lanzamiento-del-samung-galaxy-s-iv-para-marzo-de-2013/”,”content”:”Al
mismo estilo que Apple, no ha pasado ni 6 meses hay se estu00e1
hablando de una nueva versiu00f3n del Equipo bandera de Samsung para
marzo del pru00f3ximo […]”},{“title………..”
There isn’t author id in the json output. How can I send a request in wordpress searching url for author id ?
You can use the WP User Query class for this (http://codex.wordpress.org/Class_Reference/WP_User_Query) and because you’ve got the user nicename, you can use this as a query parameter.
For example:
Does this work for you?