After granting read and write permissions(scope=activity:write,read_all), running training did not trigger any webhook event pushes.
However, after re-granting read permissions(scope=activity:read_all), webhook event pushes were received.
What could be the reason for this?
authorize url:
https://www.strava.com/oauth/authorize
?client_id=xxxx
&response_type=code
&redirect_uri=https://xxxx/
&approval_prompt=auto
&scope=activity:write,read_all
subscription url:
curl -X POST "https://www.strava.com/api/v3/push_subscriptions" -F "client_id=xxxx" -F "client_secret=xxxxx" -F "callback_url=https://xxxxx" -F "verify_token=xxxxx"
