嗨,我得到一个客户端试图在仅在 iOS 上使用 Amplify Flutter 时写入未经授权的属性,它适用于 android 设备
这是我的代码
try {
Map<String, String> userAttributes = {
'email': email,
"custom:accType": "User",
"given_name": givenName,
"custom:department": department
// additional attributes as needed
};
await Amplify.Auth.signUp(
username: data.name,
password: data.password,
options: CognitoSignUpOptions(userAttributes: userAttributes));}
我不明白为什么它会在 iOS 中引发错误,但在 android 中却完全正常,如果有人知道为什么请告诉我。谢谢!!