如标题所示,是否可能更改Amazon Cognito用户的用户名?我在文档中找不到任何内容
可以使用preferred_username
API调用使用iOS SDK更新Cognito用户的updateAttributes
。但是,请注意,您将无法修改用户的username
。引用官方AWS文档,
用户名值是一个单独的属性,与name属性不同。注册用户始终需要用户名,并且在创建用户后无法更改用户名。
但是,preferred_username
值确实可以更改,并且根据官方documentation使用iOS SDK更改首选用户名的示例代码如下所示:
AWSCognitoIdentityUserAttributeType * attribute = [AWSCognitoIdentityUserAttributeType new];
attribute.name = @"preferred_username";
attribute.value = @"John User";
[[user updateAttributes:@[attribute]] continueWithSuccessBlock:^id _Nullable(AWSTask<AWSCognitoIdentityUserUpdateAttributesResponse *> * _Nonnull task) {
//success
return nil;
}];
我还想说明iOS SDK的AWS API文档是相当小的,我建议开发人员在有疑问时通过SDK source code。