我正在开发一个旨在管理Azure Active Directory用户和组及其连接的应用程序,包括创建,编辑和删除用户和组。该应用程序依赖于AAD的Graph API。
有时,在尝试将用户添加为组成员时,我会从图谱API收到以下响应:
<?xml version="1.0" encoding="utf-8"?>
<error xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<code>
Request_BadRequest
</code>
<message xml:lang="en">
Unable to update the specified properties for objects that have originated within an external service.
</message>
</error>
具体来说,我最近在尝试将使用Graph API创建的用户添加到使用Graph API创建的组后收到此回复。
在这种情况下,Graph API是所谓的“外部服务”吗?
用户具有以下属性:
本集团拥有以下物业:
我误解了收到的错误信息吗?还是我错过了别的什么? 或者这只是一个错误?
修改
我检查了我能够简单地编辑上述每个对象的详细信息(即组的描述和用户属性之一)。这两项行动都是成功的......但我仍然无法将两者联系起来。