我使用Graph api将图片上传到Facebook,当我点击图片时,它会自动导航到默认的“链接”网址。但是,我需要它导航到另一个嵌入图片的新网址。
提前致谢。
答案 0 :(得分:0)
试试这将发布带有说明的图片,点击后会重定向到您提供的链接。
NSMutableDictionary *params =
[NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Post Feed", @"name",
@"Feed is Awesome.", @"caption",
@"Check out how to use Facebook.", @"description",
@"http://www.kamleshwar.com/blog",@"link",
@"http://i3.ytimg.com/vi/zqUW68itCec/default.jpg", @"picture",
nil];
[facebook requestWithGraphPath:@"feed"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];