REST API is deprecated for v2.1 and higher

My goal is to get a list of friends from facebook. I have javaScript code. But when I try to run the code, it throws the following error:

Success object {error_code: "12", error_msg: "REST API is deprecated for v2.1 and higher", request_args: Array [8]}

Here is the code:

<!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 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 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>

      

+3


source to share


2 answers


The method is fql.query

deprecated. See https://developers.facebook.com/docs/javascript/reference/FB.api/ for current usage.

You can run FQL queries with versions of the Graph API prior to version 2.0 as follows:

FB.api('/fql?q={your_url_encoded_query}', 'get', function(response) {
    ...
});

      



You will have problems getting the buddy list for non-Graph API 1.0 applications, as you hopefully know.

Alternatively, you can combine your FQL queries in one:

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

      

+1


source


To get your friends list, you use / me / friends. This will return all friends who are also using the app. It is impossible to get all friends.



0


source







All Articles