【发布时间】:2020-06-04 23:46:56
【问题描述】:
我正在尝试为我的 cognito 用户添加 hasSubscription 的自定义属性,并在注册和登录期间添加/更新它
var hasSubscriptionAttribute = new AttributeType
{
Name = "custom:hasSubscription",
Value = "0"
};
request.UserAttributes.Add(hasSubscriptionAttribute);
然而,我仍然总是得到错误
客户端试图写入未经授权的属性
我错过了什么?
【问题讨论】:
标签: amazon-cognito