FacebookがFBMLをシャットダウンしたため、インストールしたフレンドセレクタータブが機能しなくなりました。FBMLなしで機能する代替手段はありますか?
質問する
633 次
2 に答える
0
もちろん!リクエスト 2.0を探す
于 2011-09-15T21:52:58.157 に答える
0
ユーザーがページ/アプリケーションに接続している場合 (つまり、ユーザーが気に入っている場合)、次のようなことができるはずです。
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script type="text/javascript">
FB.init({
appId : '<?= $app_id; ?>',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
oauth : true // enable OAuth 2.0
});
function friends() {
FB.api('/me/friends', function(response) {
console.log(response);
});
}
</script>
<button onclick="friends();return false;">Show friends</button>
その場合、response.data を反復処理して何をすべきかを決定するのはあなた次第です。ページでこれをテストしたところ、問題なく動作するようです。
于 2011-09-10T16:46:28.607 に答える