php - Coverting cURL to java for parse.com?
416
Solution:
I'm not writing your code for you, or doing your research for you.
But the way to solve a problem like this is to break it down into subproblems. For example:
- How to send an HTTP request in Java
- How to send a POST request in Java
- How to pass something in the request body.
- How to set the content type
- How to pass non-standard request headers
- How to construct JSON
- How to deal with the response.