当用户点击 Facebook 连接中的允许时打开好友请求

发布于 2024-12-09 19:21:23 字数 173 浏览 0 评论 0原文

我允许用户使用 facebook connect 登录 facebook,然后授予我的应用程序权限。

当他们单击“允许”时,我希望打开多个朋友的选择器,以便他们可以邀请朋友访问该网站。我首先需要权限对话框,这样我才能获取受邀用户的 user_id。

当用户单击“允许”时,有没有办法打开多好友选择器?

I allow users to use facebook connect to login to facebook and then give permission to my app.

When they click allow I want the multi-friend's selector to open so they can invite friend's to the site. I need the permissions dialoge first so I can get the user_id's of the users the person invited.

Is there a way to open the multi-friend's selector when the user clicks allow?

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

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

发布评论

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

评论(1

江心雾 2024-12-16 19:21:23

您好,当用户验证您的应用程序时,它会登录到您的网站,您可以捕获登录事件并将其发送到您可以放置​​朋友选择器的任何其他网址。

 FB.Event.subscribe("auth.login", function(response) {
  //send to some url(file) and put there friend selector
  });

Hi when the user aunthenticate your application, it logins to your site, You can capture the event of login and can send him to any other url where you can put friend selector.

 FB.Event.subscribe("auth.login", function(response) {
  //send to some url(file) and put there friend selector
  });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文