我想通过使用后备共享在 facebook 上发布提要。它应该包含图像和消息。我通过更改参数尝试了很多
NSMutableDictionary *postParams =
[[NSMutableDictionary alloc] initWithObjectsAndKeys:
@"http://www.abc.com",@"link",
self.produtObj.productImageURL, @"picture",
self.produtObj.productName, @"name",
self.produtObj.productDescription, @"message",
nil];
[FBRequestConnection
startWithGraphPath:@"me/feed"
parameters:postParams
HTTPMethod:@"POST"
completionHandler:^(FBRequestConnection *connection,
id result,
NSError *error) {
NSString *alertText;
if (error) {
alertText = [NSString stringWithFormat:
@"error: domain = %@, code = %d",
error.domain, error.code];
} else {
alertText = [NSString stringWithFormat:
@"Posted action, id: %@",
[result objectForKey:@"id"]];
}
// Show the result in an alert
[[[UIAlertView alloc] initWithTitle:@"Result"
message:alertText
delegate:self
cancelButtonTitle:@"OK!"
otherButtonTitles:nil]
show];
}];
使用此代码,提要显示在一个框中,单击它会将我带到指定的链接。我只想在盒子里有一个带有故事的图像缩略图。请帮我。这是我在 SOF 的第一个问题。所以请原谅我的错误。提前致谢。:)