Oauth2 Instagram API “redirect URI does not match registered redirect URI”

前端 未结 10 1667
甜味超标
甜味超标 2020-12-15 06:41

I am working on a Rails application which is in development mode and it can register with omniauth.

The host is

http://localhost:3000/
10条回答
  •  不思量自难忘°
    2020-12-15 07:37

    When you specify a redirect URI http://localhost:3000 is not the same as http://localhost:3000/ (note the trailing slash).

    Make sure the callback URI matches exactly.

提交回复
热议问题