我有兴趣通过Google Drive API接收更改通知。
为了接收通知,您必须与必须接收通知的地方的addess进行http请求:
示例:
POST https://www.googleapis.com/drive/v3/changes/watch
Authorization: Bearer auth_token_for_current_user
Content-Type: application/json
{
"id": "4ba78bf0-6a47-11e2-bcfd-0800200c9a77", // Your channel ID.
"type": "web_hook",
"address": "https://somedomain.com/notifications", // Your receiving URL.
...
"token": "target=myApp-myChangesChannelDest", // (Optional) Your channel token.
"expiration": 1426325213000 // (Optional) Your requested channel expiration time.
}
如您所见,我正在设置Google在"https://somedomain.com/notifications"
发送推送通知。
尽管如此,我在本地/开发行为环境中,所以我需要在本地ip上接收通知。
是否有其他选择。
您可以使用ngrok之类的东西。