Microsoft Graph Subscriptions - Method not Allowed

本秂侑毒 提交于 2019-12-13 08:37:07

问题


I am currently trying to send a request to create a subscription to messages using the Microsoft Graph API, but am getting an error 405 Method Not Allowed.

I was wondering if anyone had an idea why this was happening?

Here is the request I send:

POST https://graph.microsoft.com/beta/subscriptions
Content-type: application/json
Content-length: 208

{
   "changeType": "Created",
   "notificationUrl":"https://webhook.azurewebsites.net/api/send/myNotifyClient",
   "clientState": "subscription-identifier",  
   "resource": "me/messages"
}

and then here is the response:

{
 "error": {
  "code": "MethodNotAllowed",
  "message": "Method not allowed.",
  "innerError": {
   "request-id": "a61ece92-7b7f-4693-b047-80c419ebde23",
   "date": "2016-01-06T11:13:02"
  } 
 }
}

Response Headers:

Access-Control-Allow-Origin → *
Allow → GET
Cache-Control → private
Content-Type → application/json
Date → Wed, 06 Jan 2016 11:13:02 GMT
Duration → 58.558
OutBoundDuration → 0
Server → Microsoft-IIS/8.5
Transfer-Encoding → chunked
X-Powered-By → ASP.NET
client-request-id → a61ece92-7b7f-4693-b047-80c419ebde23
request-id → a61ece92-7b7f-4693-b047-80c419ebde23
x-ms-ags-diagnostic → {"ServerInfo":{"DataCenter":"NorthEurope","Slice":"SliceB","ScaleUnit":"001","Host":"AGSFE_IN_4","ADSiteName":"DUB"}}

回答1:


The subscriptions entity set/functionality is currently only accessible to Azure Active Directory users. Your request was sent with a Microsoft Account (Live Id) access token and we don't currently support subscriptions for such accounts.



来源:https://stackoverflow.com/questions/34439663/microsoft-graph-subscriptions-method-not-allowed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!