OAuth 授权代码授予 - Docusign - 调用从授权代码生成访问和刷新令牌时的错误响应
OAuth Authorization code grant - Docusign - Error response while making calls to generate access and refresh tokens from auth code
我正在尝试使用授权代码授予流程来授权我的应用文档 here。我正在构建一个应用程序以支持使用 REST API 对 Docusign 进行自动用户配置。我已经创建了一个开发者帐户并获得了 Integrator Key 和密钥。
我提出以下请求以获取授权码:
account-d.docusign.com/oauth/auth?response_type=code&scope=signature&client_id=<MY_CLIENT_ID>&redirect_uri=<localhost> and the response on the browser with the code.
我正在使用 curl 命令通过以下请求生成令牌:
curl -iX POST account-d.docusign.com/oauth/token -H "Authorization: Basic base64_representation_of_clientId:clientSecret" -d 'grant_type=authorization_code&code=<Auth Code recieved in the previous step>'
但是我收到了这样的回复:
HTTP/1.0 301 Moved Permanently
Location: account-d.docusign.com/oauth/token
Server: BigIP
Connection: Keep-Alive
Content-Length: 0
此错误响应的可能原因是什么?
或许尝试将协议 (https://) 添加到请求 URI?
curl -iX POST https://account-d.docusign.com/oauth/token...
我正在尝试使用授权代码授予流程来授权我的应用文档 here。我正在构建一个应用程序以支持使用 REST API 对 Docusign 进行自动用户配置。我已经创建了一个开发者帐户并获得了 Integrator Key 和密钥。
我提出以下请求以获取授权码:
account-d.docusign.com/oauth/auth?response_type=code&scope=signature&client_id=<MY_CLIENT_ID>&redirect_uri=<localhost> and the response on the browser with the code.
我正在使用 curl 命令通过以下请求生成令牌:
curl -iX POST account-d.docusign.com/oauth/token -H "Authorization: Basic base64_representation_of_clientId:clientSecret" -d 'grant_type=authorization_code&code=<Auth Code recieved in the previous step>'
但是我收到了这样的回复:
HTTP/1.0 301 Moved Permanently
Location: account-d.docusign.com/oauth/token
Server: BigIP
Connection: Keep-Alive
Content-Length: 0
此错误响应的可能原因是什么?
或许尝试将协议 (https://) 添加到请求 URI?
curl -iX POST https://account-d.docusign.com/oauth/token...