2013-07-22 60 views
0

我有一個關於sdk facebook與我的iOS應用程序集成的問題。 在我的應用我想用Facebook登錄驗證的用戶,這一切都清楚這裏IOS:facebook sdk根據我自己的帖子

http://developers.facebook.com/docs/tutorials/ios-sdk-tutorial/

在此應用程序的用戶應該張貼在自己的Facebook帳戶的東西,如照片或消息,沒有複雜。

問題是......是否有可能檢測到評論數量和用戶收到的帖子? Facebook sdk中是否有可以獲取這些信息的內容?

感謝

+1

http://stackoverflow.com/questions/14931612/comment-from-facebook-api-with-the-graph-api-with-objective-c檢查這個 –

回答

0

使用下面的代碼,你可以從Facebook iOS SDK 3.0, implement like action on a url?也得到更多的想法。

NSString *urlToLikeFor = facebookLike.titleLabel.text; 

NSString *theWholeUrl = [NSString stringWithFormat:@"https://graph.facebook.com/me/og.likes?object=%@&access_token=%@", urlToLikeFor, FBSession.activeSession.accessToken]; 
NSLog(@"TheWholeUrl: %@", theWholeUrl); 

NSURL *facebookUrl = [NSURL URLWithString:theWholeUrl]; 

NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:facebookUrl]; 
[req setHTTPMethod:@"POST"]; 

NSURLResponse *response; 
NSError *err; 
NSData *responseData = [NSURLConnection sendSynchronousRequest:req returningResponse:&response error:&err]; 
NSString *content = [NSString stringWithUTF8String:[responseData bytes]]; 

NSLog(@"responseData: %@", content); 
+0

以及與此代碼,我就能知道數喜歡或評論爲我自己的帖子? – CrazyDev

相關問題