I created an app on Strava. Authorized my app on my account with read,activity:read,activity:read_all,read_all
permissions.
I didn't want polling their API for activities as they recommend webhooks for that.
So I created a webhook subscription and validated it via the callback url.
Here's the response of Strava API for the webhook subscriptions I successfully created:
[
{
"id": 179***,
"resource_state": 2,
"application_id": 59***,
"callback_url": "http://*************.duckdns.org:8100/strava/webhook",
"created_at": "2021-01-22T20:42:46Z",
"updated_at": "2021-01-22T20:42:46Z"
}
]
My problem is that I'm not receiving any activity events.
The only event I get is the revoke access event when I delete my app from my account.
{
'aspect_type': 'update',
'event_time': 1611350203,
'object_id': 6881533,
'object_type': 'athlete',
'owner_id': 6881533,
'subscription_id': 179***,
'updates': {'authorized': 'false'}
}
So this indicates that my side is correct because event is received.
I tried sending an email to Strava but all I got was a auto-response telling me to use Strava API Google Groups for help, which was not helpful at all.
Does anyone have any clue what is wrong?