如何在 Facebook 允许权限后重定向到页面

发布于 2024-11-08 00:36:11 字数 468 浏览 1 评论 0原文

在用户允许与我的网站共享基本信息后,我试图将用户重定向到一个页面。我使用以下代码:

function render_fbconnect_button() {

return '<a href="#" onclick="FB.Connect.requireSession(); return false;" >
    <img id="fb_login_image" border=0 src="http://static.ak.fbcdn.net/images/fbconnect/login-buttons/connect_light_medium_long.gif" alt="Connect"/>
    </a>';
}

此代码在用户未登录时显示连接按钮。如果用户已经登录并单击它,则会显示基本信息的权限。

我想在用户允许权限时将用户重定向到 abc.php 页面。

I'm trying to redirect the user to a page after he allows to share basic info with my site. I use the following code:

function render_fbconnect_button() {

return '<a href="#" onclick="FB.Connect.requireSession(); return false;" >
    <img id="fb_login_image" border=0 src="http://static.ak.fbcdn.net/images/fbconnect/login-buttons/connect_light_medium_long.gif" alt="Connect"/>
    </a>';
}

This code displays a connect button when user is not logged in. If the user is already logged in and clicks on it, it displays permission for basic info.

I want to redirect the user to abc.php page when he allows the permission.

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

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

发布评论

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

评论(1

香草可樂 2024-11-15 00:36:11

在您的 FB.Connect.requireSession() 函数中,

if (confirm('Are you willing to share information?')) {
   location.href='abc.php';
}

In your FB.Connect.requireSession() function,

if (confirm('Are you willing to share information?')) {
   location.href='abc.php';
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文