您好我的facebook时间线有问题。我正在使用一个应用程序,我想在其中显示facebook时间线。我是这个概念的新手。所以我无法理解我是怎么做到的?如果有任何示例或代码的东西给我一些想法,这将是有帮助的。提前致谢。 如果你不能回答,请不要标记为否定。谢谢。
答案 0 :(得分:-1)
您可以使用FBSDKGraphRequest
。看看https://developers.facebook.com/docs/graph-api/reference/v2.10/user/feed
FBSDKGraphRequest *request = [[FBSDKGraphRequest alloc]
initWithGraphPath:@"/me/feed"
parameters:params
HTTPMethod:@"GET"];
[request startWithCompletionHandler:^(FBSDKGraphRequestConnection *connection,
id result,
NSError *error) {
// Handle the result
}];