An open API service indexing awesome lists of open source software.

https://github.com/codebanesr/inboxiq

google auth using api's
https://github.com/codebanesr/inboxiq

Last synced: 2 months ago
JSON representation

google auth using api's

Awesome Lists containing this project

README

          

## Setting up push subscription
https://cloud.google.com/pubsub/docs/create-push-subscription#pubsub_create_push_subscription-rest

```sh
PUT https://pubsub.googleapis.com/v1/projects/PROJECT_ID/subscriptions/SUBSCRIPTION_ID
Authorization: Bearer ACCESS_TOKEN

{
"topic": "projects/PROJECT_ID/topics/TOPIC_ID",
// Only needed if you are using push delivery
"pushConfig": {
"pushEndpoint": "PUSH_ENDPOINT"
}
}
```