我正在运行官方的SDK Junit代码,它工作正常。但是,当我将帐户信息更改为我的帐户信息时,就会发生异常。
调试表示,发布到端点“ / oauth / token”时,它返回http状态400,

我将在docusign管理页面中生成的私钥保存到“ docusign_private_key.txt”中

ApiClient apiClient = new ApiClient (BaseUrl);
//String currentDir = System.getProperty("user.dir");

try
{

    // IMPORTANT NOTE:
    // the first time you ask for a JWT access token, you should grant access by making the following call
    // get DocuSign OAuth authorization url:
    //String oauthLoginUrl = apiClient.getJWTUri(IntegratorKey, RedirectURI, OAuthBaseUrl);
    // open DocuSign OAuth authorization url in the browser, login and grant access
    //Desktop.getDesktop().browse(URI.create(oauthLoginUrl));
    // END OF NOTE
    byte[] privateKeyBytes = null;
    try
    {
        privateKeyBytes = Files.readAllBytes (Paths.get (privateKeyFullPath) );
    }
    catch (IOException ioExcp)
    {
        Assert.assertEquals (null, ioExcp);
    }
    if (privateKeyBytes == null)
    {
        return;
    }
    java.util.List<String> scopes = new ArrayList<String>();
    scopes.add (OAuth.Scope_SIGNATURE);
    scopes.add (OAuth.Scope_IMPERSONATION);
    OAuth.OAuthToken oAuthToken = apiClient.requestJWTUserToken (IntegratorKey, UserId, scopes, privateKeyBytes, 3600);
}

最佳答案

问题解决了。

SDK JUnit代码定义了一个名为“ UserId”的参数,应使用“ API用户名”而不是“管理”页面中的“ API帐户ID”来填充。

谢谢你们的好心人。

10-07 20:52