我是Facebook应用程序开发的新手,已做过一些研究,但似乎无法找到我要找的东西。这就是我想做的事情。
我正在尝试创建一个应用程序,其中一部分将Facebook用户的过去状态显示为从最近到最旧的tableview。在应用程序内部能够将他们喜欢的状态保存到收藏页面.--我对如何保存最喜欢的状态有一个很好的想法,但是我遇到的问题是从facebook到应用程序的状态。
如果有人能指出我正确的方向或帮助我,我将不胜感激!!!!
答案 0 :(得分:0)
try the following code ..... provide a limit
NSString * pRequestString2 = [NSString stringWithFormat:@"me/statuses?limit=100%@",[FBSession activeSession].accessToken];
[[FBRequest requestForGraphPath:pRequestString2] startWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
NSLog(@"%@",result);
}];
or
try this ....
NSString * pRequestString1 = [NSString stringWithFormat:@"me/feed?%@",[FBSession activeSession].accessToken];
[[FBRequest requestForGraphPath:pRequestString2] startWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
NSLog(@"%@",result);
}];
make sure you have proper permissions .....