3

認証されたユーザーの友達のステータスを表示する Web アプリを作成しています。とにかくFacebookのグラフAPIを使用してこれを行うことができますか? 私が見つけた唯一のものはFQL、phpの使用が許可されていないために使用できないものです。

編集:また、多くのステータスは必要ありません。彼らの友達の最新のものだけが必要です。

編集: fbID は Facebook ID です。これが私のコードです:

<script>
var self;
  (function(d){                                                                             // Load the SDK Asynchronously
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));

  window.fbAsyncInit = function() {                                             // Init the SDK upon load
    FB.init({
      appId      : '190843834372497', // App ID
      channelUrl : 'http://people.rit.edu/~cds7226/536/project3/channel.html', // Path to your Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // listen for and handle auth.statusChange events
    FB.Event.subscribe('auth.statusChange', function(response) {
      if (response.authResponse) {                                              // user has auth'd your app and is logged into Facebook
        FB.api('/me', function(me){
          if (me.name) {
            document.getElementById('auth-displayname').innerHTML = me.name;
            //Add rest of code here ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
            self=me;
          }
        })
        document.getElementById('auth-loggedout').style.display = 'none';
        document.getElementById('auth-loggedin').style.display = 'block';
      } else {                                                                  // user has not auth'd your app, or is not logged into Facebook
        document.getElementById('auth-loggedout').style.display = 'block';
        document.getElementById('auth-loggedin').style.display = 'none';
      }
    });

    document.getElementById('auth-loginlink').addEventListener('click', function(){ // respond to clicks on the login and logout links
      FB.login(function(response){},{scope: 'friends_status,read_stream'});
    });
  } 
</script>

次に、ボタンをクリックすると、この関数が実行されます。ユーザーが最後にチェックインした場所と、Facebook ID を含む個人情報を取得します。

function getFriendsCheckin(token)
{
    $.getJSON('https://api.foursquare.com/v2/checkins/recent?oauth_token='+token+'&v='+"20120514",function(results){
    //console.log(results);

    $.each(results['response']['recent'], function(key,value){
        //console.log(key+' : '+value);
        //Friends personal info
        var fullName = value['user']['firstName']+" "+value['user']['lastName'];
        var timeStamp = value['createdAt'];
        var photo = value['user']['photo'];
        var fbID = value['user']['contact']['facebook'];
        //Where they last checked in
        var locName = value['venue']['name'];
        var location = new google.maps.LatLng(value['venue']['location']['lat'],value['venue']['location']['lng']);
        //setMarker(location,fullName+'@'+locName);
        setCustomMarker(location,fullName+'@'+locName,fbID,photo);
    });
})

}

最後にここが問題です。この関数は、Google マップでメーカーをクリックすると、ユーザーの最終的なフレンド状況が表示されると想定されています。

function setCustomMarker(location,title,fbID,icon)
{
//alert("here");
var marker = new google.maps.Marker({
    position: location,
    draggable: false,
    map: map,
    title: title,
    //icon: icon
    //icon: new google.maps.MarkerImage({url: icon, size: new google.maps.Size({width:10,height:10})})
});

google.maps.event.addListener(marker,'click',function(){
console.log('SELECT status_id,message FROM status WHERE uid='+fbID);
    FB.api(
        {
            method: 'fql.query',
            query: 'SELECT status_id,message FROM status WHERE uid='+fbID
        },
        function(response){
            console.log(response);
        }
    );//*/
});

}

4

3 に答える 3

1

混乱するかもしれませんが、 で使用できfqlますjavascript sdk

例えば

FB.api(
  {
    method: 'fql.query',
    query: 'SELECT name FROM user WHERE uid=me()'
  },
  function(response) {
    alert('Your name is ' + response[0].name);
  }
);

リファレンスを参照

グラフAPIを使用している場合、これは機能するはずです(テストされていませんが、私を確認して更新できます)

FB.api('/','POST',{
    access_token:'<your_access_token>',
    batch:[
        {
            "method": "GET",  
            "relative_url": "me/friends?limit=5",
            "name": "get-friends"
        },
        {
            "method": "GET",
            "depends_on":"get-friends",
            "relative_url": "{result=get-friends:$.data.*.id}/statuses"
        }
    ]
},function(response){
     console.log(response);

})

もちろん、友達のステータス更新を読むために必要な許可が必要です。

于 2012-05-20T17:58:25.523 に答える
0

はい。これは、グラフ APIを使用して実行できます。

リファレンス ドキュメント - プロファイル フィード API 呼び出しをご覧ください。そのサンプルでは、​​ me を、アクセスしようとしているフィードの友人のユーザー ID に置き換えます。

ただし、アプリ経由でこれを行うには、アプリを使用しようとしているユーザーに read_stream と friends_status のアクセス許可を求める必要があります。

私の経験から、クライアント側の Facebook js-sdk を使用して OAuth を処理するのが最も簡単です。

heroku でホストされているアプリの場合、クライアント側の OAuth 処理のサンプル実装が提供されており、非常に便利です。(heroku でアプリをホストできるようにするには、developers.facebook.com/apps でアプリを作成するときに、必ず [Heroku でプロジェクトをホストする] オプションを選択してください。

于 2012-10-14T00:59:42.400 に答える
0

これを試して:

FB.api('user_id/statuses','GET',{
    //friends_status access token
});
于 2012-06-11T10:17:58.167 に答える