Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
グラフAPIを使用してiPhoneアプリケーションでFacebookの写真の好き嫌いの数を取得するにはどうすればよいですか?
前もって感謝します。
FBオブジェクトを使用して新しいリクエストを呼び出すだけです。
[facebook requestWithGraphPath:@"PHOTO_ID/likes"];
PHOTO_ID興味のある写真のFacebookIDに置き換えます。この呼び出しは、その写真のすべての同様の情報を含む配列を返します。
PHOTO_ID
この-facebook requestDidLoad:メソッドでは、その配列の数を取得して、いいねの数を返します。
-facebook requestDidLoad:
NSInteger likeCount = [result count];