Skip to content

Instantly share code, notes, and snippets.

View lutsen's full-sized avatar

Lútsen Stellingwerff lutsen

View GitHub Profile
@lutsen
lutsen / A Google Drive push notifications.md
Last active May 13, 2022 20:22 — forked from magnetikonline/dumprequest.php
How to set up Google Drive push notifications for a file, and test if they work by catching them and writing them in a file with a PHP script.

Activate notifications for the file with ID [file-id] by posting some JSON to this URL: https://www.googleapis.com/drive/v3/files/[file-id]/watch Authorization: Bearer auth_token_for_current_user Content-Type: application/json

Minimal JSON you need to POST:

{
  "id": "[some unique ID for your push, you can define it yourself but it mus be unique]",
 "type": "web_hook",