【发布时间】:2011-11-24 05:40:31
【问题描述】:
当我尝试在我的 iphone 应用程序中的 facebook 墙上发帖时,我在消息对话框中收到以下消息。
Application response error.
The attachment was either missing or its improperly formatted. you can see this because you are one of the developers of the app.
这是我在 facebook wall 上发布的代码
FBStreamDialog *dialog = [[[FBStreamDialog alloc] init] autorelease];
dialog.userMessagePrompt=@"Enter your message:";
dialog.attachment = [NSString stringWithFormat:@"Testing"];
[[FBRequest requestWithDelegate:self] call:@"facebook.photos.upload" params:[NSDictionary dictionaryWithObjectsAndKeys:@"AppName",@"caption",nil] dataParam:UIImageJPEGRepresentation([UIImage imageNamed:@"AppImage.png"],1.0)];
[dialog show];
【问题讨论】:
-
是的,hanon 编辑了我的问题并将代码发布到那里