自版本v2.1起,REST API已被弃用。

3

我的目标是从Facebook检索好友列表。我有JavaScript代码。但是当我尝试运行代码时,它会给我以下错误:

成功 Object {error_code: "12", error_msg: "REST API在v2.1及更高版本中已弃用", request_args: Array[8]}

以下是代码:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
        <title> 'FbFriends'</title>
        <script src="http://connect.facebook.net/en_US/all.js"></script>
        <script src="http://code.jquery.com/jquery-latest.js"></script>
        <!--<link rel="stylesheet" type="text/css" href="styles.css">-->
  </head>
    <body>
     <div id="fb-root"></div>
   <script src="http://connect.facebook.net/en_US/all.js"></script>
<fb:login-button autologoutlink="true" scope="email,public_profile,user_friends" size="large"></fb:login-button>
 <script>

        FB.init({

        appId  : 'App Id',
         status : false, // check login status
        cookie : true, // enable cookies to allow the server to access the session
        xfbml  : true  // parse XFBML

        });


        FB.getLoginStatus(function(response) {
        if (response.authResponse) {
        //getting current logged in user's id from session object
        var globaluserid=response.authResponse.userID;
        console.log("login Status", +globaluserid);
        //fetching friends uids from 'friend' table. We are using FB.api syntax

        FB.api(

        {
        method: 'fql.query',
        query: 'SELECT uid2 FROM friend WHERE uid1='+globaluserid
        },

        function(response) {
    console.log('Success', response);
        //once we get the response of above select query we are going to parse them
        for(i=0;i<response.length;i++)
        {
        //fetching name and square profile photo of each friends
    console.log("Now fetching name..");
        FB.api(
        {
        method: 'fql.query',
        query: 'SELECT name,pic_square FROM user WHERE uid='+response[i].uid2
        },
        function(response) {
        //creating img tag with src from response and title as friend's name
        htmlcontent='<img src='+response[0].pic_square+' title='+response[0].name+' />';
         //appending to div based on id. for this line we included jquery
         $("#friendslist").append(htmlcontent);
         }

        );

        }

        }

        );

        } 

        });

        </script>
       <div id="fb-root"></div>
        <table width="100%" border="0">
          <tr>
             <td align="left">
                 <div id="friendslist"> Priyanka </div>
             </td>
          </tr>
        </table>
  </body>
</html>
2个回答

1
方法fql.query已经被弃用。请参阅https://developers.facebook.com/docs/javascript/reference/FB.api/了解当前用法。
您可以像这样使用Graph API版本高达v2.0来运行FQL查询:
FB.api('/fql?q={your_url_encoded_query}', 'get', function(response) {
    ...
});

希望你已经意识到,使用Graph API v1.0以外的应用程序获取好友列表可能会遇到问题。

此外,你可以将FQL查询合并为一个查询:

select uid, name, pic_square from user where uid in (select uid2 from friend where uid1=me())

0
要获取好友列表,您可以使用/me/friends。这将返回所有同样在使用该应用的好友。没有办法获取所有好友。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接