i've installed wp-json-rest-api on my Wordpress website and i want to connect my website to an android app. In such a url, it gets all the posts:
http://mywebsite.com/wp-json/posts
On one of the android pages, i want to get ONLY title of posts, nothing more. I mean how should i specify in the url or anywhere else that i just want titles and IDs not all contents of posts? for example in page of each post, i just want to get title, id and content of that post, something like this, where id of the post is 12:
http://mywebsite.com/wp-json/posts?include=title,id,content/12
but in other pages like list of all posts, i want something like this:
http://mywebsite.com/wp-json/posts?include=title,id
what should i do?