0

我正在尝试将照片、URL、消息和名称从我的 iOS 应用程序发布到 Facebook 到用户的墙上。我正在使用最新的 Facebook 框架 3.1
我正在使用以下代码:

    NSDictionary* dict = @{
    @"link" : @"https://www.yahoo.com",
    @"picture" : UIImagePNGRepresentation([UIImage imageNamed:@"Default.png"]),
    @"message":@"Your message here",
    @"name" : prodName,
    @"caption" : [NSString stringWithFormat:@"Try the app: %@", prodName],
    @"description" : @"Integrating Facebook in ios"
};

[FBRequestConnection startWithGraphPath:@"me/photos" parameters:dict HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
    NSString *alertText;
    if (error)
    {
        NSLog(@"%@",[NSString stringWithFormat: @"error: domain = %@, code = %d", error.domain, error.code]);
        alertText = @"Failed to post to Facebook, try again";
    } else
    {
        alertText = @"Posted successfully to Facebook";
    }

    [[[UIAlertView alloc] initWithTitle:@"Facebook Result" message:alertText delegate:nil cancelButtonTitle:@"OK!" otherButtonTitles:nil] show];
}];    

我可以发帖成功。但我在 Facebook 上看到,它只发布照片和消息,而不是其他细节。如果我使用@“me/feed”,我什至无法成功发布。Facebook 给出错误代码=5。
如何发布所有详细信息?

4

1 回答 1

0

“me/feed”需要一个用于“picture”参数的 url。请查看此链接:上一篇关于在用户墙上张贴照片的帖子

看起来你必须决定是使用“我/照片”还是“我/饲料”。此链接将为您提供更多信息,并且可能是一种解决方法。

于 2013-01-12T14:00:14.110 回答