"您提供的AWS Access密钥ID在我们的记录中不存在"在与Salesforce的联合期间

时间:2017-08-25 14:20:07

标签: javascript amazon-web-services amazon-s3 aws-sdk-js

我尝试在Amazon和Salesforce之间建立联盟,这样:如果用户通过Salesforce正确进行身份验证,它将在给定帐户中看到所有S3存储桶。

很简单,我跟着this blog post改变了一些东西(即我没有使用DyanamoDb表,回调是为了简化S3存储桶)。我尝试实现的流程称为增强(简化)流程(详情here):

Enhanced simplified flow

与文章相比,我略微修改了回调代码:

function onPageLoad() {
    var url = window.location.href;
    var match = url.match('id_token=([^&]*)');
    var id_token = "";

    if (match) {
        id_token = match[1];
    } else {
        console.error("Impossibile recuperare il token");
    }

    AWS.config.region = "eu-west-1"
    const cognitoParams = {
        AccountId: "ACC_ID",
        IdentityPoolId: "eu-west-1:XXX",
        Logins: {
            "login.salesforce.com": id_token
        }
    }

    const identity = new AWS.CognitoIdentity()

    identity.getId(cognitoParams, function (err, identityData) {
        if (err) {
            printMessage(err);
            return;
        }

        const identityParams = {
            IdentityId: identityData.IdentityId,
            Logins: cognitoParams.Logins
        }

        identity.getCredentialsForIdentity(identityParams, function (err, data) {
            if (err) {
                printMessage(err);
            } else {
                var c = {
                    region: 'eu-west-1',
                    accessKeyId: data.Credentials.AccessKeyId,
                    secretAccessKey: data.Credentials.SecretKey
                };
                var s3 = new AWS.S3(c);

                // HERE IS THE ERRORE - data is empty and response contains the error
                s3.listBuckets((response, data) => {
                    data.Buckets.forEach(function (value) { appendMessage(value.Name) })
                });
            }
        });
    });

    // IRRELEVANT CODE
}

我可以从Salesforce获取令牌,我可以获得访问权限和密钥,但是当我尝试列出桶时,我得到了简洁:

  

您提供的AWS访问密钥ID在我们的记录中不存在。

我发现这个错误是合理的,因为我根本没有用户,并且密钥是在运行中创建的。哪里可以碰到我的脑袋? SDK是2.103.0。

1 个答案:

答案 0 :(得分:2)

  1. 可能是由于IAM的最终一致性,您是否可以尝试在调用listbucket api之前包含延迟或向us-east-1端点发出请求?
    http://docs.aws.amazon.com/IAM/latest/UserGuide/troubleshoot_general.html#troubleshoot_general_access-denied-service2
    1. GetCredentialsForIdentity返回临时凭据。所以你应该包括AccessKeyId,SecretKey和SessionToken来发出请求。 http://docs.aws.amazon.com/cognitoidentity/latest/APIReference/API_GetCredentialsForIdentity.html 希望这会有所帮助。