This question already has an answer here:
- Http Get using Android HttpURLConnection 6 answers
i want to build an android app for my wordpress website using wp-api plugin. how can i send HttpRequest(GET) and recive response in Json?
This question already has an answer here:
i want to build an android app for my wordpress website using wp-api plugin. how can i send HttpRequest(GET) and recive response in Json?
Try below code to get json from a URL
Use this function to get JSON from URL.
Do not forget to add Internet permission in your manifest
<uses-permission android:name="android.permission.INTERNET" />
Then use it like this: