Azure graph API B2C - 版本无效
Azure graph API B2C - Invalid version
使用以下 url:
https://graph.microsoft.com/dd0d2506-56b4-463c-bd19-98cd81bdfb1c/users/821d91b8-36e1-4b89-bd3a-4caecc40e4c9/$links/memberOf?api-版本=1.6
我正在尝试调用图表 API,但出现以下错误。
{
"error": {
"code": "BadRequest",
"message": "Invalid version",
"innerError": {
"request-id": "cb8002f1-da39-4ad2-8695-a2d349efc303",
"date": "2016-10-12T10:46:23"
}
}
}
我试过这些版本
- /users?api-version=1.5
- /users?api-version=beta
- /users?api-version=1.6
Azure 门户位于 "preview"。有人看过这个吗?
您使用的 API 版本模式适用于 Azure AD Graph API (https://graph.windows.net), but the endpoint you are using is for Microsoft Graph API (https://graph.microsoft.com)。
如果你想使用 Azure AD Graph API,你应该使用:
https://graph.windows.net/{tenant-id}/users/{id}/memberOf?api-version=1.6
如果您想使用 Microsoft Graph API,您可以使用:
https://graph.microsoft.com/v1.0/{tenant-id}/users/{id}/memberOf
使用以下 url: https://graph.microsoft.com/dd0d2506-56b4-463c-bd19-98cd81bdfb1c/users/821d91b8-36e1-4b89-bd3a-4caecc40e4c9/$links/memberOf?api-版本=1.6
我正在尝试调用图表 API,但出现以下错误。
{
"error": {
"code": "BadRequest",
"message": "Invalid version",
"innerError": {
"request-id": "cb8002f1-da39-4ad2-8695-a2d349efc303",
"date": "2016-10-12T10:46:23"
}
}
}
我试过这些版本
- /users?api-version=1.5
- /users?api-version=beta
- /users?api-version=1.6
Azure 门户位于 "preview"。有人看过这个吗?
您使用的 API 版本模式适用于 Azure AD Graph API (https://graph.windows.net), but the endpoint you are using is for Microsoft Graph API (https://graph.microsoft.com)。
如果你想使用 Azure AD Graph API,你应该使用:
https://graph.windows.net/{tenant-id}/users/{id}/memberOf?api-version=1.6
如果您想使用 Microsoft Graph API,您可以使用:
https://graph.microsoft.com/v1.0/{tenant-id}/users/{id}/memberOf