当前位置: 首页 > 知识库问答 >
问题:

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

有权
2023-03-14

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

{“errorCode”:“PARTNER_AUTHENTICATION_FAILED”,“message”:“未找到或禁用指定的积分器密钥。未指定积分器密钥。”}

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

如果我将endpoint域的开始更改为https://account-d.docusign.com/我将获得状态200和超文本标记语言,其中没有太多关于错误的说明,如下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>

共有1个答案

鲁鸿朗
2023-03-14

很可能您没有在请求中传递授权标头。在您的邮递员请求中,请将此添加到您输入资源uri的标题选项卡中,格式为密钥:授权值:承载{AccessToken}

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

 类似资料: