Picasso load image with HTTP post
问题 My API having some verification mechanism for every HTTP request. One of the end-point have the functionality to load a image using HTTP post method. The post request body will contain a JSON object which is verified from the server side. For that i need to include a JSON like this on the http post request body. { "session_id": "someId", "image_id": "some_id" } how can I do this with Picasso ? 回答1: I got the solution from the hint given by Mr.Jackson Chengalai. Create a Okhttp request