【发布时间】:2017-03-29 04:21:57
【问题描述】:
我正在尝试获取如下所示的两足令牌:https://developer.autodesk.com/en/docs/oauth/v2/tutorials/get-2-legged-token/
这是我在 cygwin 中输入的(id 和 secret 是示例中的,但我使用自己的 id 和 secret):
curl -v 'https://developer.api.autodesk.com/authentication/v1/authenticate' -X 'POST' -H 'Content-Type: application/x-www-form-urlencoded' -d ' client_id=obQDn8P0GanGFQha4ngKKVWcxwyvFAGE& client_secret=eUruM8HRyc7BAQ1e& grant_type=client_credentials& scope=data:read'
但我明白了:
< HTTP/1.1 400 Bad Request
< Content-Type: application/json
< Date: Tue, 15 Nov 2016 10:06:09 GMT
* Server Apigee Router is not blacklisted
< Server: Apigee Router
< Content-Length: 231
< Connection: keep-alive
<
* STATE: PERFORM => DONE handle 0x600057550; line 1965 (connection #0)
* multi_done
* Curl_http_done: called premature == 0
* Connection #0 to host developer.api.autodesk.com left intact
{"developerMessage":"The required parameter(s) client_id,client_secret,grant_type not present in the request","userMessage":"","errorCode":"AUTH-008","more info":"http://developer.api.autodesk.com/documentation/v1/errors/AUTH-008"}
我从网站上获取的示例中怎么可能缺少参数?
【问题讨论】:
标签: curl autodesk autodesk-forge