我在Facebook上发帖。我可以发布一个URL,但我也想发布一些有关该URL的描述。我正在使用它-

NSString *shareUrlString = [NSString stringWithFormat:@"http://www.facebook.com/sharer.php?u=%@&t=%@", urlString , description];
    NSURL *url = [ [ NSURL alloc ] initWithString:urlString ];
    [[UIApplication sharedApplication] openURL:url];


但我无法发布说明。因此,您能提出任何想法吗?我不想使用任何SDK或任何api来做到这一点。

最佳答案

使用iPhone-Facebook-Graph-API易于使用。

NSMutableDictionary *variables = [NSMutableDictionary dictionaryWithCapacity:4];

[variables setObject:@"MESSAGE HERE" forKey:@"message"];
[variables setObject:@"URL HERE" forKey:@"link"];
[variables setObject:@"URL NAME HERE" forKey:@"name"];
[variables setObject:@"URL DESC HERE." forKey:@"description"];

FbGraphResponse *fb_graph_response = [fbGraph doGraphPost:@"me/feed" withPostVars:variables];

关于iphone - 如何在Facebook上发布带有url的消息?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14080851/

10-13 04:36