Skip to main content

Hi, I am trying to implement Strava webhook but I need to call the subscription API first to create a webhook subscription. I keep getting the following error for some reason even though I am doing everything according to the webhooks documentation:

{
    "message""Bad Request",
    "errors": [
        {
            "resource""PushSubscription",
            "field""callback url",
            "code""not verifiable"
        }
    ]
}

In your API Application settings, what domain is configured as your "Authorization Callback Domain"? Is it app.6amrun.com?


Yes, it is app.6amrun.com


Yes, the Authorization Callback Domain is app.6amrun.com


Hey, did you ever get this working, and if so what was the 'secret'? I'm having exactly this. Thanks!


Did you remember to implement a GET handler for the endpoint as well as a POST handler for the actual events? The GET handler is used for validating the callback URL and is described in the documentation (I also overlooked this the first time).

https://developers.strava.com/docs/webhooks/


Reply