Reputation: 18454
I have to use Google Drive REST API due to the limitation of Android Drive API for my android app. Everything works properly until registering for change notification. From the API docs, the workflow is:
example.com
with Google Cloud Console https://example.com/notifications
Is it possible to receive push notification from Google Drive on an android app without my own backend server?
Upvotes: 3
Views: 227
Reputation: 76679
you'd have define that push notification URL as a Cloud Function HTTP Trigger's URL - which then pushes a Firebase Cloud Messaging notification to an Android client, whenever it is being triggered. basically, this would be a HTTP push notification sending out a subsequent FCM push notification.
Upvotes: 1