轨道 3 +奥姆尼奥特。当用户单击“不允许”时对于 FB,我如何自定义响应

发布于 2024-12-07 19:51:46 字数 121 浏览 0 评论 0原文

现在,如果用户单击“不允许”,弹出窗口将返回到该网站,并显示错误消息:“无法从 Facebook 向您授权,因为“用户拒绝了您的请求。”

有关如何处理此失败的任何想法在我的身份验证控制器中,以便我可以关闭对话框?

Right now if a user clicks "Don't Allow" the popup window goes back to the site with the error message: "Could not authorize you from Facebook because "The user denied your request."

Any ideas on how I can handle this failure in my auth controller so I can close the dialog?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寻找我们的幸福 2024-12-14 19:51:46

我认为如果身份验证失败,您需要重定向用户,因此将其添加到您的路线中:

  match 'auth/failure', to: redirect('/')

您可以在此处查看我的示例应用程序: https://github.com/senayar/facebook_connect

i think you need to redirect the user if the authentication fail so add this to your routes :

  match 'auth/failure', to: redirect('/')

you can look at my example app here : https://github.com/senayar/facebook_connect

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文