2
我對推送通知API有疑問。404推送通知API的「更改未找到」消息並獲取更改API
我在我的服務中爲推送通知創建了web_hook URL,因此我可以使用selfLink獲取文檔更改狀態的URL。
但是當我用selfLink獲取URL時,我有時會得到404代碼。
請讓我知道爲什麼Drive API響應404代碼有時。
方案:從谷歌推送通知服務器
請求體。
{
"kind": "drive#changes",
"id": "12345",
"selfLink": "https://www.googleapis.com/drive/v2/changes/12345"
}
在我的服務器下抓取URL。
GET https://www.googleapis.com/drive/v2/changes/12345
響應身體
{
"error": {
"errors": [
{
"domain": "global",
"reason": "notFound",
"message": "Change not found: 12345"
}
],
"code": 404,
"message": "Change not found: 12345"
}
}
非常感謝@katric。 – user1998064