0

我在脸书上发帖。我可以发布一个 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 来做到这一点。

4

1 回答 1

1

使用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];
于 2012-12-29T11:18:12.793 回答