我想使用 fbconnect 在 facebook 上发布图片。
我已经编写了以下代码行,但我应该更改我的代码以在 Facebook 上发布图像。
- (void) postOnPage
{
[self saveAccessTokenKeyInfo];
NSString *imgStr=@"hello";
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Hat Application", @"name",
@"http://www.idhats.com/", @"link",
@"HatApp", @"caption",
imgStr, @"picture",
nil];
[facebook dialog:@"feed" andParams:params andDelegate:self];
}
谢谢...