- Authentication flow: https://developers.strava.com/docs/authentication/
- Webhooks: https://developers.strava.com/docs/webhooks/
- Webhook design: https://birdie0.github.io/discord-webhooks-guide/
npm install
serverless deploy --client_id <client-id> --client_secret <client-secret>
Steps to set up a Strava subscription are defined here (You must get approval before your application will receive events).
curl -X POST https://api.strava.com/api/v3/push_subscriptions \
-F client_id=<client-id> \
-F client_secret=<client-secret> \
-F 'callback_url=https://<your-callback-url>' \
-F 'verify_token=STRAVA'