Solved

Can I set a localhost URL as an OAuth Redirect URI?

  • 13 July 2018
  • 3 replies
  • 30169 views

Is it possible to set http://localhost/ringcentral/index.php as OAuth Redirect URI?

My app's authorization flows are

  • Authorization Code
  • Refresh Access Token

I don't have a live and publicly accessible URL to set as an OAuth Redirect URI, so I don't know how to complete the OAuth process.

I'm trying to set up and run the following demo:

https://github.com/ringcentral/ringcentral-php

Thanks!

icon

Best answer by Phong1426275020 13 July 2018, 01:43

View original

3 replies

Userlevel 1
Hi Nibu,

Yes you can but not directly like that. Check out the ngrok tunner (https://ngrok.com/) and use that tool for your local app.

+ Phong
For oAuth redirect URI, yes you can use a local one and it should work. Because the redirection happens in your local browser.

However WebHook URIs have to be public.

You can set any callback uri, but you need to keep in mind that the callback uri need to be exactly the same you have configured during creating the app in developer portal

Reply