Can I make a http request to Drupal 7, Services 3 asking to receive a JSON object containing all articles from one author?
If so what would the URL and arguments be?
( front end dev. who is new to drupal )
I’ve never done this but from what it sounds like services can be coupled with [url=https://drupal.org/project/services_views]services views to consume view data results in a restful manor. To that end you could create a view for the data you want than consume it via the services api over http. If that doesn’t work there is always custom code as I believe services is just a API for creating restful services.
Thanks oddz, very helpful !