Azure GraphAPI getMemberGroups错误请求错误

时间:2017-08-22 00:59:14

标签: azure azure-ad-graph-api

我正在尝试使Azure Graph API调用getMemberGroups,但是我收到了“400 Bad Request”错误。

根据文档[https://msdn.microsoft.com/en-us/library/azure/ad/graph/api/functions-and-actions#getMemberGroups],以下请求应为: enter image description here

我正在使用POSTMAN发出请求但是我一直收到“Request_BadRequest”错误代码。

我的POST请求是:

enter image description here 红色栏是租户ID,蓝色栏是用户的对象ID。

我的标题是:

enter image description here

我的身体是:

enter image description here

我不断收到错误消息:

{
    "odata.error": {
        "code": "Request_BadRequest",
        "message": {
            "lang": "en",
            "value": "Invalid JSON. The value '------' is not a valid number."
        }
    }
}

我不太确定为什么会发生这种情况,有没有人有任何线索?

2 个答案:

答案 0 :(得分:2)

由于我们发布的是json数据,因此您不应使用表单数据。对于application/json类型数据,我们应使用原始选项发送数据。

答案 1 :(得分:0)

如何知道广告用户的授权令牌

enter image description here