ユーザーの友達が投稿・公開したステータスデータを取得したい。次のコードを書きましたが、ユーザー自身のステータス更新のみを取得します。誰かが私のコードの何が問題なのか教えてくれませんか? ありがとう!
NSString *fql = [NSString stringWithFormat:@"select uid,message from status where uid in (select uid2 from friend where uid1=%lld) order by time desc ", uid];
NSDictionary *params = [NSDictionary dictionaryWithObject:fql forKey:@"query"];
[[FBRequest requestWithDelegate:self] call:@"facebook.Status.get" params:params];