使用 facebook api 邀请 facebook 的朋友加入我的应用程序
我创建了一个允许用户通过 facebook 集成(与 facebook 连接)的应用程序。当用户登录应用程序时,我想显示登录用户的所有 facebook 好友,以邀请他们加入我的应用程序。
目前我正在使用多朋友选择器来邀请朋友。
<fb:serverfbml width="615">
<script type="text/fbml">
<fb:request-form action="action url"
method="POST"
invite="true"
type="invite"
content=" my message">
<fb:multi-friend-selector showborder="true"
bypass="cancel"
cols=3
email_invite="false"
import_external_friends="false"
actiontext="Invite your friend from facebook"/>
</fb:request-form>
</script>
</fb:serverfbml>
我想自定义多好友选择器 1 可以更改 css 并在单列中显示所有朋友吗? 2 我可以显示禁用已经与我的应用程序连接的朋友吗?
请给出您的建议或是否有其他选择。
谢谢
I create a application which allow user integration through facebook(connect with facebook).when user sign-in in application , i want to show all facebook friends of sign-in user for invite them to join my application.
In current i am using multi friend selector for invite friends.
<fb:serverfbml width="615">
<script type="text/fbml">
<fb:request-form action="action url"
method="POST"
invite="true"
type="invite"
content=" my message">
<fb:multi-friend-selector showborder="true"
bypass="cancel"
cols=3
email_invite="false"
import_external_friends="false"
actiontext="Invite your friend from facebook"/>
</fb:request-form>
</script>
</fb:serverfbml>
I want to customize mult friend selector
1 Can change css and show all friend in a single column?
2 can i show disable the friends whose are already connect with my application?
please give your suggestion or if any other option for this.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需更改列数的
cols
参数,然后使用exclude_ids
数组即可排除所需的 id。一切都在这里: http://developers.facebook.com/docs/reference /fbml/多好友选择器Just change the
cols
parameter for the number of columns, and use theexclude_ids
array to, well, exclude the ids you want. It's all here: http://developers.facebook.com/docs/reference/fbml/multi-friend-selector我认为这是当朋友接受邀请时facebook重定向到的URL
I think it is the URL to which facebook redirect when the friend accept the invitation