Start a Project

Calling PUT and POST method in Retrofit

What is  Retrofit Library and How to send PUT and POST method in the retrofit?

Retrofit Library is a REST Client for Android and Java by Square. It makes relatively easy to send and retrieve JSON (or other structured data)  via rest Webservice. In Retrofit, we can configure which converter is used for the data serialization.

When we want to send JSON request data then we use @body annotation in our Request call and pass our request model with @body in the request, and set the content type application/json in the header.

We can also use @Field Annotation, so, we must put @FormUrlEncoded in our API call.

Exit mobile version