如何使用用户的 uid 在 Facebook 中显示用户的姓名?

发布于 2024-11-07 10:50:58 字数 203 浏览 0 评论 0 原文

我正在为我的 iframe 画布应用程序异步加载 JavaScript SDK。

我知道 fbml 已被弃用并被逐步淘汰,但是 xfbml 还可以吗?

我还可以使用 fb:name 例如吗?

例如,是否有更好的方法来打印用户 100 个朋友的姓名?

I am loading the JavaScript SDK Asynchronously for my iframe canvas application.

I am aware that fbml is deprecated and being phased out, but is xfbml still ok?

Can I still use fb:name eg. <fb:name uid="2901279">?

Is there a better way to print the names of 100 friends for a user, for example?

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

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

发布评论

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

评论(2

过气美图社 2024-11-14 10:50:58

您需要开始使用 Graph API,这里有一个快速工作示例来帮助您入门:

<!doctype html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>Facebook Javascript SDK</title>
</head>
<body>
    <div><fb:login-button perms=""></fb:login-button></div>

    <div id="friends"></div>


    <div id="fb-root"></div>
    <script>
      window.fbAsyncInit = function() {
        FB.init({
          appId   : 'APP_ID',
          cookie  : true,
          status  : true,
          xfbml   : true 
        });

        FB.Event.subscribe('auth.login', function(response) {
          window.location.reload();
        });

        FB.api('/me/friends',function(resp) {
            if(resp && resp.data.length) {
                var html = '<ul>';
                for(var i=0; i<resp.data.length; i++) {
                    html += '<li><img src="http://graph.facebook.com/' + resp.data[i].id + '/picture?type=small" />' + resp.data[i].name + '</li>';
                }
                html += '</ul>';
                document.getElementById('friends').innerHTML = html;
            }
        });
      };

      (function() {
        var e = document.createElement('script');
        e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
        e.async = true;
        document.getElementById('fb-root').appendChild(e);
      }());
    </script>
</body>
</html>

只需替换为您的应用程序 ID 即可开始!

You need to start using the Graph API, here's a quick working example to get you started:

<!doctype html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>Facebook Javascript SDK</title>
</head>
<body>
    <div><fb:login-button perms=""></fb:login-button></div>

    <div id="friends"></div>


    <div id="fb-root"></div>
    <script>
      window.fbAsyncInit = function() {
        FB.init({
          appId   : 'APP_ID',
          cookie  : true,
          status  : true,
          xfbml   : true 
        });

        FB.Event.subscribe('auth.login', function(response) {
          window.location.reload();
        });

        FB.api('/me/friends',function(resp) {
            if(resp && resp.data.length) {
                var html = '<ul>';
                for(var i=0; i<resp.data.length; i++) {
                    html += '<li><img src="http://graph.facebook.com/' + resp.data[i].id + '/picture?type=small" />' + resp.data[i].name + '</li>';
                }
                html += '</ul>';
                document.getElementById('friends').innerHTML = html;
            }
        });
      };

      (function() {
        var e = document.createElement('script');
        e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
        e.async = true;
        document.getElementById('fb-root').appendChild(e);
      }());
    </script>
</body>
</html>

Just replace with your application id and you are good to go!

舟遥客 2024-11-14 10:50:58

你说得对,你可能不应该再使用fbml,但是来自“社交插件”的所有标记仍然会受到鼓励(即喜欢按钮)。

不管它是否被弃用,我更喜欢完全控制我的应用程序的布局 - 而是使用 标签,您可以从“http://graph”获取所有朋友列表.facebook.com/UID/friends”并解析生成的 JSON。 (在 PHP-SDK 中:$fb->api("/me/friends");)。

You have right, you probably shouldn't use fbml any longer, but all markup from "social plugin" will be still encourage (i. e. like button).

No matter is it deprecated or not, I prefer got full controll of layout my app - Instead use <fb:name... tag, you could get all friends list from "http://graph.facebook.com/UID/friends" and parse resulting JSON. (in PHP-SDK: $fb->api("/me/friends");).

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