私はMicrosoftプッシュ通知を購読しようとしています。サブスクリプションエンドポイントを呼び出すときに毎回ステータスコード(429件が多すぎます)が表示されます。私は昨日試み、このエラーが発生しましたし、私は今それを試してみて、同じを持っているので、Microsoft Graphプッシュ通知を購読するときのステータスコード429
https://developer.microsoft.com/en-us/graph/docs/concepts/errors Client application has been throttled and should not attempt to repeat the request until an amount of time has elapsed.
しかし:ドキュメントによります。おそらく、私が待つべき時間は主な原因ではない。私は長い間、Microsoft Graphを要求せずに完全に別の要求を行っても問題が発生します。要求に関する 情報:
https://graph.microsoft.com/v1.0/subscriptions
要求ペイロード::
{
"resource": "me/calendars/{calendarId}/events",
"notificationUrl": "https://{myApp}/office365/notifications/",
"changeType": "created,updated,deleted",
"expirationDateTime": "2017-07-22T08:23:42Z"
}
エラー:ここで問題になる可能性がどのような
{
"error": {
"code": "ExtensionError",
"message": "Operation: Create; Exception: [Status Code: 429; Reason: ]",
"innerError": {
"request-id": "1ed7e537-8524-4a8b-89eb-43501066e7fa",
"date": "2017-07-19T09:55:27"
}
}
}
?それは同じリソース上に何度もサブブレイクしようとしているので、このエラーが発生します。
最大値は何ですか? – dvelopp