Facebook 好友选择器

发布于 2024-10-22 17:49:54 字数 146 浏览 1 评论 0原文

你好 我正在开发一个基于 iframe 的 facebook 应用程序,我想开发一个自动完成朋友选择器,但我认为 facebook 已经提供了它?那么它已经存在还是我需要使用 JQuery 自动完成?无论如何,请告诉我们 facebook 为开发者提供了什么?最好的方法是什么?

Hi
I am working on an iframe based facebook application, I want to develop an auto complete friend selector, but I think it is already provided by facebook? So is that already exist or I need to use JQuery autocomplete? In any case please tell that what facebook provides to developers? What is the best way to do that?

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

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

发布评论

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

评论(3

孤寂小茶 2024-10-29 17:49:54

请查看此处。您会发现许多示例,包括朋友选择器,您可以从浏览器运行它们

Take a look here. You will find many examples including friend selector, and you can run them from your browser

记忆消瘦 2024-10-29 17:49:54

还有两个您可能感兴趣的 JQuery 插件。第一个是自动完成插件,其中包含 Facebook 主题,第二个是完整的好友选择器插件。我已经在生产中使用了这两种方法:
http://loopj.com/jquery-tokeninput/demo.html(请参阅 facebook主题)
http:// labs.thesedays.com/blog/2011/06/20/the-missing-facebook-interface-component-for-friend-selection/

There also exist two JQuery Plugins you might be interested in. The first is an autocomplete plugin which includes a Facebook theme and the second is a full friend selector plugin. I already used both on production:
http://loopj.com/jquery-tokeninput/demo.html (see the facebook theme)
http://labs.thesedays.com/blog/2011/06/20/the-missing-facebook-interface-component-for-friend-selection/

眼藏柔 2024-10-29 17:49:54

朋友选择器仍然存在 - 尽管相当笨重 - 查看 serverFbml ,它充当遗留朋友选择器的包装

示例:

<fb:serverFbml style="width: 755px;">  
     <script type="text/fbml">
        <fb:fbml>
            <fb:request-form
                action="<URL for post invite action, see fb:request-form docs for details>"
                method="POST"
                invite="true"
                type="XFBML"
                content="This is a test invitation from XFBML test app
                <fb:req-choice url="see fb:req-choice docs for details."
                    label="Ignore the Facebook test app!" />
             ">
             </fb:request-form>
                <fb:multi-friend-selector
                    showborder="false"
                    actiontext="Invite your friends to use Facebook." />
         </fb:fbml>
    </script>
</fb:serverFbml>

Friend selector still exists - albeit rather clunky - Check out serverFbml which serves as a wrapper of the legacy friend-selector

Example:

<fb:serverFbml style="width: 755px;">  
     <script type="text/fbml">
        <fb:fbml>
            <fb:request-form
                action="<URL for post invite action, see fb:request-form docs for details>"
                method="POST"
                invite="true"
                type="XFBML"
                content="This is a test invitation from XFBML test app
                <fb:req-choice url="see fb:req-choice docs for details."
                    label="Ignore the Facebook test app!" />
             ">
             </fb:request-form>
                <fb:multi-friend-selector
                    showborder="false"
                    actiontext="Invite your friends to use Facebook." />
         </fb:fbml>
    </script>
</fb:serverFbml>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文