1

我正在处理 facebook 页面,就像没有 facebook like 按钮一样。在我的应用程序中。

我正在使用以下代码来喜欢我的应用程序中的页面。

以下是我想在 Facebook 中添加的页面网址。

NSString *likePage=@"https://www.facebook.com/pages/Shaktimantelecom/265306070277816?ref=hl"; // here you page url

以下是我FaceBookRequestConnection的应用程序中喜欢页面的课程。

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   likePage, @"object",[[NSUserDefaults standardUserDefaults] valueForKey:@"token"],@"access_token",
                                   nil];
[FBRequestConnection startWithGraphPath:@"/me/og.likes" parameters:params HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
        UIAlertView *alert=[[UIAlertView alloc] initWithTitle:nil message:[NSString stringWithFormat:@"liked with id %@",[result valueForKey:@"id"]] delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
        [alert show];
        NSLog(@"result is %@",result);
    }];

当我使用上面的代码时,它给了我错误"The operation couldn't be completed (com.facebook.sdk error 5)"

请帮助并告诉我是否做错了什么。

Note: I am using Facebook sdk.
4

0 回答 0