The redirect_uri does not match the client registered redirect_uri - what is it?
Im trying to make my first app to get webhooks and getting this message when im trying to integrate my app: "The redirect_uri does not match the client registered redirect_uri. Please contact the integrator". My redirect uri now is https://www.example.com/ Please tell me whats Im doing wrong?
The redirect URI you specify when initiating the Oauth connection must exactly match the redirect URI you included in the request to get access/refresh tokens. Using the example from the docs, if you initiate the connection with this URL:
If you’ve done that and you’re still seeing the error, make sure to check if you have a trailing / at the end, this can cause problems. If you continue to see the error, can you send me the URL you’re using to initiate the connection, as well as the full request you’re sending to get access/refresh tokens (sans code/client secret/etc.)?
The redirect_uri does not match the client registered redirect_uri - what is it?
I am having a similar problem. My redirect uri was a http://localhost:3000/oauth-callback. I was able to deploy it live on heroku but now I cant. I also can't make it a https://. I have tried using the heroku app as a redirect but that doesn't do the trick either.
The redirect_uri does not match the client registered redirect_uri - what is it?
DCrowe, did you ever find a workaround for this? I'm having a similar problem. I believe it is because Heroku constantly change the PORT being used and I don't think there is anyway to avoid this.