web-dev-qa-db-ja.com

AWS Cognitoエラー:「identityPoolId」は制約を満たすことができませんでした

私は新しいCognitoです。 Lambdaを使用してAWS Cognitoを実装しようとしています。これは tutorial です。

AmazonCognitoIdentityClient client =
                new AmazonCognitoIdentityClient();
    GetOpenIdTokenForDeveloperIdentityRequest tokenRequest = new GetOpenIdTokenForDeveloperIdentityRequest();
    tokenRequest.setIdentityPoolId("us-east-1_XXXXXXX");

これは、setIdentityPoolIdで使用しているプールIDです

enter image description here

これはJUnitテストです

public class AuthenticateUser implements RequestHandler<Object, Object> {

@Override
public Object handleRequest(Object input, Context context) {

    AuthenticateUserResponse authenticateUserResponse = new AuthenticateUserResponse();
    @SuppressWarnings("unchecked")
    LinkedHashMap inputHashMap = (LinkedHashMap)input;
    User user = authenticateUser(inputHashMap);
    return null;
}

public User authenticateUser(LinkedHashMap input){
    User user = null;
    String userName = (String) input.get("userName");
    String passwordHash = (String) input.get("passwordHash");

    try {
        AmazonDynamoDBClient client = new AmazonDynamoDBClient();
        client.setRegion(Region.getRegion(Regions.US_EAST_1));
        DynamoDBMapper mapper = new DynamoDBMapper(client);
        user = mapper.load(User.class, userName);

        if(user != null){
            System.out.println("user found");
            if(user.getPasswordHash().equals(passwordHash)){
                System.out.println("user password matched");
                String openIdToken = getOpenIdToken(user.getUserId());
                user.setOpenIdToken(openIdToken);
                return user;
            } else {
                System.out.println("password unmatched");
            }
        } else {
            System.out.println("user not found");
        }
    } catch (Exception e) {
        System.out.println("Error: " + e.toString());
    }

    return user; 
}

これは出力です

user found
user password matched

しかし、次のエラーが発生しているため、return userステートメントが失敗しています

1 validation error detected: Value 'us-east-1_XXXXXX' at 'identityPoolId' 
failed to satisfy constraint: Member must satisfy regular expression pattern: [\w-]+:[0-9a-f-]+ 
(Service: AmazonCognitoIdentity; Status Code: 400; Error Code: ValidationException; 
34
suku

CognitoユーザープールIDをIDプールIDとして使用しています。それらは2つの異なるものです。 IDプールIDの形式はus-east-1:XXXX-XXXXXX-XXXX-XXXXです。

IDプールIDを取得するには、「ユーザープールの管理」セクションではなく、Cognitoコンソールの「フェデレーションIDの管理」部分を使用する必要があります。お役に立てれば。

113
Chetan Mehta