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
- Host: GitHub
- URL: https://github.com/codebanesr/inboxiq
- Owner: codebanesr
- License: isc
- Created: 2023-07-01T20:52:50.000Z (over 2 years ago)
- Default Branch: template
- Last Pushed: 2023-07-05T17:16:13.000Z (over 2 years ago)
- Last Synced: 2025-01-20T11:29:18.882Z (about 1 year ago)
- Language: TypeScript
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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"
}
}
```