通过方法GET将CURL请求转换为HTTP Request Java

时间:2016-04-19 06:12:32

标签: java curl get

我有以下CURL请求任何人都可以请确认我后续的HTTP请求是什么:

curl -i -L -H "Accept: application/json" --data "client_id=APP-UJA2FDFLIVK14WMW&client_secret=6d8d32f1-1c25-4356-8b15-4d803d9a869e&grant_type=authorization_code&code=dj4kYk&redirect_uri=https://developers.google.com/oauthplayground" "https://api.sandbox.orcid.org/oauth/token"

任何人都可以帮助我完全将上述卷曲请求转换为httpreq。

1 个答案:

答案 0 :(得分:0)

你应该看一下这篇文章:Using java.net.URLConnection to fire and handle HTTP requests

您应该能够按原样传递数据部分:

URLConnection connection = new URL(url + "?" + dataString).openConnection();

使用:

connection.setRequestProperty("Accept: application/json", charset);

添加标题

这是一个起点......