How do I retrieve a list of popular plugins using the WordPress.org Plugin API?
I'd like to retrieve a list of popular plugins from WordPress.org using their API.
I know I can do something like this to get a specific plugin:
http://api.wordpress.org/plugins/info/1.0/name_of_plugin
And that I can get back a list of plugins using something like this:
http://api.wordpress.org/plugins/info/1.0/?action=query_plugins
But I don't know how to get the popular plugins. I'm guessing it is something like:
http://api.wordpress.org/plugins/info/1.0/?action=query_pluginsbrowse=popular
I'd like to do this without using WordPress' (the software) Plugin API. This should be something I could type into a browser and get back the results (like one can with the above).
Thanks!