我正在将AWS Congito用户池用于具有该用户池作为身份提供者的Cognito身份池的账户管理。我正在使用它来控制通过将请求发送到Lambda的API网关对API的访问。我的Lambda是使用Micronaut在Java 8中实现的。所有这些都工作正常。
在lambda,我是从得到的名称Principal
在HttpRequest
:
protected String resolveUser( HttpRequest request ){
String ret = null;
Optional<Principal> principal = request.getUserPrincipal();
if( principal.isPresent() ){
ret = principal.get().getName();
}
if( ret == null || ret.length() == 0 ){
ret = "unknown";
}
return ret;
}
Cognito identityId的字符串名称中返回的内容。像这样:
我们东部-1:xxxxe650-53f4-4cba-b553-5dff42bexxxx
我想记录实际的用户登录名,或者至少需要某种方式在需要时将identityId转换为登录名。
该LookupDeveloperIdentity API调用似乎是去了解这个正确的方式,但我无法得到它的工作。
尝试使用Java和AWS Java SDK 2进行此操作:
protected String loadUsername( String user ){
String ret = "unknown:"+user;
CognitoIdentityClient cognito = CognitoIdentityClient.create();
LookupDeveloperIdentityRequest request = LookupDeveloperIdentityRequest.builder()
.identityPoolId( identityPoolId )
.identityId( user )
.build();
LookupDeveloperIdentityResponse response = cognito.lookupDeveloperIdentity( request );
List<String> identifiers = response.developerUserIdentifierList();
if( identifiers != null && identifiers.size() > 0 ){
ret = identifiers.get( 0 );
}
return ret;
}
引发异常
software.amazon.awssdk.services.cognitoidentity.model.NotAuthorizedException:您无权访问此身份(服务:CognitoIdentity,状态代码:400,请求ID:64e36646-612b-4985-91d1-82aca770XXXX)
通过CLI尝试执行此操作会产生类似的结果:
AWS认知身份查找开发人员身份--identity-id us-east-1:xxxxe650-53f4-4cba-b553-5dff42bexxxx --identity-pool-id us-east-1:xxxx0aa1-89f9-4418-be04- 7e83c838xxxx --max-results = 10
调用LookupDeveloperIdentity操作时发生错误(NotAuthorizedException):您无权访问此身份
我已确保适当的IAM策略能够处理此问题,并且当我尝试使用没有该策略的角色时,会遇到另一个错误
{
"Effect": "Allow",
"Action": [
"cognito-identity:LookupDeveloperIdentity"
],
"Resource": [
"arn:aws:cognito-identity:us-east-1:##########:identitypool/us-east-1:xxxx0aa1-89f9-4418-be04-7e83c838xxxx"
]
}
因此,问题归结为:
- 这是从身份池ID中获取用户池用户名的最佳方法吗?
- 如果是-我做错了什么?
- 如果不是,什么是更好的方法?
Are you sure you are using the credentials from the account which owns the identity pool you are requesting lookupDeveloperIdentity for?
- forums.aws.amazon.com/thread.jspa?threadID=231354对我来说,它看起来像一个用户的权限,而不是IAM的角色问题。