HttpGet request with params and image in the body of the request

时间:2015-11-12 12:00:53

标签: java android

I need to upload an image on server using a Http Get request with params and image in the body of the request

Is this possible?

1 个答案:

答案 0 :(得分:2)

No, it's not possible. HTTP GET requests have no body.

You would need to make a HTTP POST request.