Yammer oAuth 无效 redirect_uri
Yammer oAuth invalid redirect_uri
我正在尝试使用 omniauthable 设计通过 Yammer 按钮实现登录。我正在按照 github 自述文件中的指南进行操作。
https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview
和
https://github.com/le0pard/omniauth-yammer
在 Yammer 中,我使用重定向 URI http://127.0.0.1:3000/users/auth/yammer/callback
设置了我的应用程序。
这让我在访问 http://localhost:3000/users/auth/yammer
时出现 invalid redirect_uri
错误
所有 Yammer 文档都说重定向 URI 应该是 https://example.com
但它在开发和测试中如何工作?
github https://github.com/annado/bigboard 上的这个项目运行正常,我试图跟踪他们的代码广告,他们建议将重定向 URI 作为 http://127.0.0.1:3000
所以我只是糊涂了?回调 URI 应该是什么?
用于本地测试
redirect_URL = http://localhost:3000/users/auth/
为了开发,请将 localhost:3000 替换为您的域地址。
我正在尝试使用 omniauthable 设计通过 Yammer 按钮实现登录。我正在按照 github 自述文件中的指南进行操作。
https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview 和 https://github.com/le0pard/omniauth-yammer
在 Yammer 中,我使用重定向 URI http://127.0.0.1:3000/users/auth/yammer/callback
设置了我的应用程序。
这让我在访问 http://localhost:3000/users/auth/yammer
invalid redirect_uri
错误
所有 Yammer 文档都说重定向 URI 应该是 https://example.com
但它在开发和测试中如何工作?
github https://github.com/annado/bigboard 上的这个项目运行正常,我试图跟踪他们的代码广告,他们建议将重定向 URI 作为 http://127.0.0.1:3000
所以我只是糊涂了?回调 URI 应该是什么?
用于本地测试
redirect_URL = http://localhost:3000/users/auth/
为了开发,请将 localhost:3000 替换为您的域地址。