如何在iphone中使用图形api发表评论照片?

时间:2013-09-23 17:41:35

标签: iphone ios objective-c facebook-sdk-3.0

我有以下代码:

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:txtComment.text, @"message", nil];
NSString *strPicId = [[Appdel.arrFacebookImages objectAtIndex:Appdel.getIndex] valueForKey:@"id"];
NSString *strPath =[NSString stringWithFormat:@"%@/comments",strPicId];
[FBRequestConnection startWithGraphPath:strPath parameters:params HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection, id result1, NSError *error)
 {
     if(!error)
     {
     }
     else
     {
         NSLog(@"ERROR:%@",error);
     }
 }];

但是当它运行时,它会给我一个如下错误,

   ERROR:Error Domain=com.facebook.sdk Code=5 "The operation couldn’t be completed. (com.facebook.sdk error 5.)" UserInfo=0xb36dd80 {com.facebook.sdk:HTTPStatusCode=403, com.facebook.sdk:ParsedJSONResponseKey={
body =     {
    error =         {
        code = 200;
        message = "(#200) Requires extended permission: publish_stream";
        type = OAuthException;
    };
};

我已成功登录,我也正在收到相册,照片和评论,但我无法对任何照片发表任何评论。

1 个答案:

答案 0 :(得分:0)

您的访问令牌中似乎缺少发布权限。

你可以通过以下方式获得:

    [FBSession openActiveSessionWithPublishPermissions:@[@"publish_actions"]
                                       defaultAudience:FBSessionDefaultAudienceFriends
                                          allowLoginUI:YES
                                     completionHandler:^(FBSession *session, FBSessionState state, NSError *error) {
        if (FBSession.activeSession.isOpen && !error) {
            // Publish the comment (your code inside) if permission was granted
            [self publishComment];
        }
    }];

这是来自https://developers.facebook.com/docs/ios/publish-to-feed-ios-sdk/

的代码