是否可以更改Amazon Cognito用户的用户名?我在文档中找不到任何内容
答案 0 :(得分:0)
可以使用preferred_username
API调用,使用iOS SDK更新Cognito用户的updateAttributes
。但是,请注意,您将无法修改用户的username
。引用正式的AWS文档
用户名值是一个单独的属性,与 名称属性。注册用户始终需要用户名,并且 创建用户后便无法更改。
但是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。