如标题中所述,是否可以更改 Amazon Cognito 用户的用户名?我在文档中找不到任何内容
Best Answer-推荐答案 strong>
可以使用 iOS SDK,使用 updateAttributes API 调用更新 Cognito 用户的 preferred_username 。但是,请注意,您将无法修改用户的 username 。引用官方 AWS 文档,
The username value is a separate attribute and not the same as the
name attribute. A username is always required to register a user, and
it cannot be changed after a user is created.
但是,preferred_username 值确实可以更改,以及使用 iOS SDK 更改首选用户名的示例代码,根据官方 documentation声明如下:
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每当有疑问。
关于ios - 是否可以使用 iOS SDK 更改 Amazon Cognito 中的用户名?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/55774309/
|