我正在尝试让模拟工作以请求身份验证令牌。
我正在使用github中的食谱:https://github.com/docusign/OAuth_JWT_recipes/blob/master/node.js/jwt_test.js。当我打开授予URL时,会弹出消息The redirect URI is not registered properly with DocuSign
。这是在管理员控制面板中查看的内容:
这是代码中的重定向URI:
生成的网址类似于
https://account-d.docusign.com/oauth/auth?response_type=code
&scope=signature%20impersonation
&client_id=fe8cc54a-884f-48e3-8a83-95cc12764803
&redirect_uri=https://www.docusign.com
。
我也试过像这样编码URI:
https://account-d.docusign.com/oauth/auth?response_type=code
&scope=signature%20impersonation
&client_id=fe8cc54a-884f-48e3-8a83-95cc12764803
&redirect_uri=https%3A%2F%2Fwww.docusign.com
。
但无济于事。
我该如何调试?这个谜题可能会遗漏哪些细节?欢迎任何提示或建议的指示。