如何用Java编写以下与APIGEE相关的curl命令
curl -X POST -H "Content-Type: application/x-www-form-urlencoded" \
https://{org-name}-test.apigee.net/oauth/client_credential/accesstoken?
grant_type=client_credentials \
-d 'client_id={consumer-key}&client_secret={consumer-secret}'
我们公司不允许使用curl,因此要从Java执行命令。任何帮助将不胜感激。
注意-该网址在某种程度上很有帮助How do i do the following curl command in Java