作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用适用于 AWS Cognito 的 JavaScript 开发工具包,有几个自定义属性我似乎无法保存,也不明白为什么。
问题属性是可变字符串字段,如下所示:
custom: role
custom: recruitingrole
custom: title
同一请求中的其他自定义字段似乎更新正常。具体来说,这些似乎有效:
custom:division
custom:linkedin
custom:location
custom:bio
当我通过 SDK 提交时,会返回以下内容:
{"__type":"NotAuthorizedException","message":"客户端尝试写入未经授权的属性"}
以下是发送的数据,如 Chrome 开发者控制台网络输出所示:
{
"AccessToken": "",
"UserAttributes": [{
"Name": "name",
"Value": "Steve Austin"
}, {
"Name": "custom:company",
"Value": "OSI"
}, {
"Name": "custom:division",
"Value": "Bionics"
}, {
"Name": "custom:recruitingrole",
"Value": "other"
}, {
"Name": "custom:linkedin",
"Value": "http://www.linkedin.com"
}, {
"Name": "custom:location",
"Value": "Mexico City, Mexico City, Mexico"
}, {
"Name": "custom:bio",
"Value": "A man barely alive."
}]
}
谁能告诉我为什么我无法保存到这些属性?
谢谢
最佳答案
关于javascript - 亚马逊认知 "A client attempted to write unauthorized attribute",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44013901/
我是一名优秀的程序员,十分优秀!