我正在尝试访问文档签名 API,但在身份验证中遇到错误如何解决此问题?



当我试图访问api时,我得到以下错误消息:

{"errorCode":"PARTNER_AUTHENTICATION_FAILED";,"消息":"指定的Integrator密钥未找到或已禁用。未指定Integrator键"}

我正在使用从该URL返回的访问令牌:https://account-d.docusign.com/oauth/token,但是文档要求请求签名信封列表的url地址是:https://demo.docusign.net/restapi/v2.1/accounts/bf672cac-****-****-****-757e9b8ebfb3/信封。

如果我将端点域的开头更改为https://account-d.docusign.com/我得到了状态200和一个HTML,它没有说太多关于错误的信息,遵循HTML:

<!doctype html>
<html ng-app="LoginAppNext.App" lang="en" class="account-server">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0">
<meta name="description" meta-description>
<title>DocuSign</title>
<link href="https://docucdn-a.akamaihd.net/olive/images/2.15.0/favicons/favicon.ico" rel="shortcut icon"
type="image/x-icon">
<base href="/">
<link rel="canonical" href="https://account-d.docusign.com/" />


<link href="/LoginAppNext/styles/olive/and/app?v=7_dKAUfFq_HQdBnGB4k7hYZKoOae-bgnT30ORlEXHEk1" rel="stylesheet" />
<!-- 21.1.2.19210 DA2DFE5 ac4fea07-f999-49e8-b450-a9bd5aa45430 -->
<!-- PAGE-TITLE DIRECTIVE MUST BE LAST INSIDE THE HEAD TAG -->
<page-title></page-title>
</head>
<body class="site-content">
<form name="fixtureForm">
<input id="fixtureInput" value="illegible value that is returned in the request">
</form>
<div ui-view></div>
<!--[if (!IE)|(gt IE 8)]><!-->
<script src="/LoginAppNext/core_via_npm?v=HmqVrseATw9A8eLx4-PxjAKYi3QSWgFzyC0R2L_sc9Q1"></script>

<!--<![endif]-->
<!--[if lte IE 8]>
<link href="/LoginAppNext/styles/legacy?v=4PA642FFntoeJCbU9Xo8MtjFl47UpOhb1wGcStBQ1UU1" rel="stylesheet"/>
<script src="/LoginAppNext/core_via_npm/legacy?v=k4d0Yt_N4blS8S0QrMQ8yybLJtbXex6uQ8SkokHHi_41"></script>

<style type="text/css">
/*
Older browsers (IE8) may interpret the new tags as having an empty XML namespace
when Angular attempts to generate them, so we need to deal with the default styling of those elements, too.
*/
:article,
:aside,
:details,
:figcaption,
:figure,
:footer,
:header,
:hgroup,
:main,
:nav,
:section,
:summary {
display: block; }
</style>
<![endif]-->
<script src="/LoginAppNext/templates?v=daF9DMXq4GIP_dsEt7fCPBYMN-A6Xk9bMZC4suEj0r01"></script>
<script src="/Scripts/app?v=lfm-G_adZ-QhT3MeHhQWFFV_fQ6ENsg6BV4q01boB6M1"></script>

</body>
</html>

很可能您没有在请求中传递Authorization标头。在您的邮递员请求中,请将此添加到";标题";选项卡,您可以在其中输入资源uri,格式为Key:Authorization Value:Bearer{AccessToken}

请查看我们的邮差收藏,您可以轻松导入,了解其工作原理:https://github.com/docusign/postman-collections

相关内容

最新更新