Azure AD:本地帐户用户“属性'邮件'是只读的,无法设置。”

时间:2018-02-16 21:37:25

标签: azure-active-directory azure-ad-graph-api

我需要能够使用电子邮件重置密码,但似乎无法通过Graph API添加密码。我每次都会收到Property 'mail' is read-only and cannot be set.错误。 这就是我创建用户的方式:

{
  "accountEnabled": true,
  "displayName": "somename",
  "mailNickname": "somenickname",
  "passwordProfile": {
    "password": "goGOhey22",
    "forceChangePasswordNextLogin": false
  },
  "mail" : "ydw89488@tqoai.com",
  "mobile": "(111) 111-1111",
  "creationType": "LocalAccount",
  "signInNames": [
    {
      "type": "userName",
      "value": "heyTEst12"
    }
  ]
}

当我尝试将电子邮件添加为“otherMails”属性时,我在Forgot Password步骤的第3步中收到AADB2C90161错误。 一切正常如果我通过AAD界面手动添加电子邮件。 知道为什么吗?

0 个答案:

没有答案