在服务器端初始化Amazon Cognito凭证提供程序

时间:2018-12-13 05:45:47

标签: java amazon-web-services amazon-s3 aws-sdk

在Android中,我们可以使用以下代码获取Amazon Cognito凭证。但是,我找不到如何从服务器端获取它。 AWS-Java SDK不包含CognitoCachingCredentialsProvider类。以下是Android的示例。

// Initialize the Amazon Cognito credentials provider
CognitoCachingCredentialsProvider credentialsProvider = new CognitoCachingCredentialsProvider(
    getApplicationContext(),
    "us-west-2:56201d8c-5e9f-49ff-8bc8-d658ae1252f9", // Identity pool ID
    Regions.US_WEST_2 // Region
);

是否有其他方法可以从服务器端获取它?还是SDK有问题?

谢谢!

0 个答案:

没有答案