DynamoDB - 请求中包含的安全令牌已过期

时间:2015-04-28 01:00:47

标签: android amazon-web-services amazon-dynamodb amazon-cognito

我试图将一些信息保存到我的DynamoDB表中。该表已经创建,但我收到以下错误。

Caused by: com.amazonaws.AmazonServiceException: The security token included in the 
request is expired (Service: AmazonDynamoDBv2; Status Code: 400; Error Code:     
ExpiredTokenException; Request ID: MA87ST04UPA57CMUJQIS8DBS4FVV4KQNSO5AEMVJF66Q9ASUAAJG)

值得注意的是,我设法将信息保存一次,但在第一次之后不再保存。

这是我的代码。

public class SignUp extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.test);

        if (android.os.Build.VERSION.SDK_INT > 9) {
            StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
            StrictMode.setThreadPolicy(policy);
        }
    }

    public void signUp(View view){
        CognitoCachingCredentialsProvider cognitoProvider = new CognitoCachingCredentialsProvider(
            this,    // get the context for the current activity
            "us-east-1:xxxxx",    /* Identity Pool ID */
            Regions.US_EAST_1           /* Region */
        );

        AmazonDynamoDBClient ddbClient = new AmazonDynamoDBClient(cognitoProvider);

        DynamoDBMapper mapper = new DynamoDBMapper(ddbClient);

        TextView name = (TextView)findViewById(R.id.Name);
        TextView email = (TextView)findViewById(R.id.email);
        TextView username = (TextView)findViewById(R.id.username);
        TextView password = (TextView)findViewById(R.id.password);
        TextView phone = (TextView)findViewById(R.id.phone);

        UserInfo userInfo = new UserInfo();
        userInfo.setName(name.getText().toString());
        userInfo.setEmail(email.getText().toString());
        userInfo.setUsername(username.getText().toString());
        userInfo.setPassword(password.getText().toString());
        userInfo.setPhone(phone.getText().toString());

        mapper.save(userInfo);

        Toast.makeText(this, "Finished!", Toast.LENGTH_LONG).show();

    }
}

感谢所有帮助。

3 个答案:

答案 0 :(得分:4)

此错误与2月Cognito公告无关。这看起来像时钟偏差错误。如果您将仿真器打开一段时间或更改了手机上的时钟,则SDK生成的令牌可能与AWS的预期不符...... SDK假设自动纠正时钟偏差错误。你能检查设备/仿真器上的时钟,看看这是不是问题?如果是,我会对确切情况感兴趣,以帮助改进SDK。

谢谢, 韦斯顿

答案 1 :(得分:1)

如果它之前有效,现在它可能与此有关 AWS官方announcement

  

如果您在2015年2月之前创建了您的身份池,则需要将您的角色与您的身份池重新关联才能使用此构造函数。为此,请打开cognito控制台,选择您的标识池,单击编辑标识池,指定经过身份验证和未经身份验证的角色,然后保存更改。

上述构造函数是这样的:

CognitoCachingCredentialsProvider cognitoProvider = new  CognitoCachingCredentialsProvider(
    myActivity.getContext(),    // get the context for the current activity
    "COGNITO_IDENTITY_POOL",    /* Identity Pool ID */
    Regions.US_EAST_1           /* Region */);

答案 2 :(得分:0)

没关系......在跳转时,我误读了上面的Java代码,实际上正确地传递了AWSCredentialsProvider(而不仅仅是AWSCredentials)。