iphone发布链接到facebook墙 - 图像

时间:2011-07-29 04:06:39

标签: ios facebook facebook-graph-api

我通过fbgraph API发布了一个指向我的fb帐户的链接。问题是,当我将链接发布到fb时,该链接的左侧会出现一个图标,例如,如果我发布www.google.com,则谷歌图片会显示在链接的左侧。

如何将默认图标更改为我想要的图标? (或)从网站获取的默认图像位置是什么。 updated 有什么想法吗?

由于

1 个答案:

答案 0 :(得分:2)

您可以在Facebook中为您的应用设置。

https://developers.facebook.com/apps

这是您的应用图标。

例如我的是一个巨大的诡计; - )

enter image description here

要在帖子中添加图片,只需添加参数@“picture”并将网址填入您想要查看的图片中。

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               @"myFacebookAppId", @"app_id",
                               @"http://www.homepage.com", @"link",
                               @"http//www.homepage.com/sillypicture.png", @"picture",
                               @"name of the post", @"name",
                               @"caption of my post", @"caption",
                               @"content of my post", @"description",
                               @"my message", @"message",
                               nil];

[[[myAppDelegate sharedDelegate] facebook] dialog:@"feed" andParams:params andDelegate:self];