Skip to main content
Answered

Make API auth fail

  • March 29, 2026
  • 1 reply
  • 33 views

Hey All

Just trying to connect strava to make for some automations. Does anyone know what the correct auth callback domain is?

*When I use make.com - {"message":"Not found"}
*When I use www.make.com - {"message":"Bad Request","errors":[{"resource":"Application","field":"redirect_uri","code":"invalid"}]}
*When I use eu1.make.com - {"message":"Bad Request","errors":[{"resource":"Application","field":"redirect_uri","code":"invalid"}]}

Thanks in advance

Best answer by ActivityFix

The error code you are getting for the www and eu1 versions indicate an invalid redirect_uri.It should look something like below, where the redirect_uri parameter points to a valid endpoint to handle the oauth flow (there will probably also be a state parameter but I’ve left that out).

https://www.strava.com/oauth/authorize?scope=YOUR_REQUESTED_SCOPES_HERE&response_type=code&approval_prompt=auto&redirect_uri=https://www.make.com/your/oauth/callback/here&client_id=YOUR_CLIENT_ID 

1 reply

ActivityFix
Superuser
Forum|alt.badge.img+24
  • Superuser
  • Answer
  • April 1, 2026

The error code you are getting for the www and eu1 versions indicate an invalid redirect_uri.It should look something like below, where the redirect_uri parameter points to a valid endpoint to handle the oauth flow (there will probably also be a state parameter but I’ve left that out).

https://www.strava.com/oauth/authorize?scope=YOUR_REQUESTED_SCOPES_HERE&response_type=code&approval_prompt=auto&redirect_uri=https://www.make.com/your/oauth/callback/here&client_id=YOUR_CLIENT_ID