I am using Drupal Services to expose my site's contents. I am fetching all taxonomy terms under a particular taxonomy vocabulary like this -
- Send a GET to http://site.com/rest/taxonomy_vocabulary?parameters[name]=Section
- Send a POST using the vid from the above response to http://site.com/rest/taxonomy_vocabulary/getTree
After the second request I get a list of taxonomy terms. Now, I want to fetch all articles that belong/related to a particular taxonomy term.
How can I do that?