我正在尝试执行以下操作
IDirectoryObjectWithReferenceRequest request = graphServiceClient.directoryRoles(roleId).members("$ref").buildRequest();
DirectoryObject o = new DirectoryObject();
o.id = "someid";
request.post(null, o);
并得到一个 400。需要传递给 post 的第二个参数对象是什么?需要传递给 post 的第一个参数是什么?文档状态作为正文传递:
{"@odata.id": "https://graph.microsoft.com/v1.0/directoryObjects/{id}" }
另外,要发布的第一个参数是什么?如果成功了,它会立即返回吗?这似乎是一种非常不寻常的报告成功/失败的方式。