我正在尝试使用 Java 中的 Microsoft Graph API 将用户添加到 Outlook 中的组。我已经参考了开发人员指南:https ://developer.microsoft.com/en-us/graph/docs/api-reference/beta/api/group_post_members 添加用户。
然而,为了实现这一点,我正在使用Microsoft graph java sdk,我需要在 java 的组中添加带有成员ID的json对象,比如
POST https://graph.microsoft.com/v1.0/groups/{id}/members/$ref
Content-type: application/json
Content-length: 30
{
"@odata.id": "https://graph.microsoft.com/v1.0/users/{id}"
}
请让我知道如何在 java 中的请求正文中添加 json 对象。
我的代码如下所示:
public void addMemberToGroup(String groupId,String userId) {
Group group = mGraphServiceClient
.groups(groupId)
.buildRequest()
.get();
JsonObject payload1 = new JsonObject();
IJsonBackedObject requestBody = new ReferenceRequestBody("https://graph.microsoft.com/v1.0/users/78276c08-9802-4108-8b20-d70cff6666e5");
mGraphServiceClient
.groups(groupId)
.members(userId)
.buildRequest()
.post(user,requestBody);
}
有了这个我得到如下错误:
严重:可抛出的详细信息:com.microsoft.graph.http.GraphServiceException:错误代码:BadRequest 错误消息:仅在包含的实体上支持写入请求
POST https://graph.microsoft.com/v1.0/groups/5877490c-54fe-45fb-b288-b5d0f6902058/members/78276c08-9802-4108-8b20-d70cff6666e5 SdkVersion:graph-java-v0.2.0 授权:Bearer eyJ0eXAiOiJKV1QiLCJub25jZSI[...] {"@odata.id":" https://graph.microsoft.com/v1.0/use[...]
400:错误请求 [...]
请让我知道如何解决这个问题。