我正在尝试将照片、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。
如何发布所有详细信息?