I have created a restful API that I have made using node.js and will deploy to Heroku. I want my android application to make requests to the web API. My understanding is that I will just have to send HTTP requests from the Android app using any external API that does the job. Is my assumption correct? Thank you
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fs
- Design RESTful service with multiple ids
Yes , you need to do API call to talk to your restful server . For this you can use any below implementation .
Sending Request
Retrofit
Retrofit Example
Async Client Example