“错误域代码=324”同时使用Facebook方法上传照片
我正在使用 iPhone-SDK 的 Facebook 方法 API。授权后,我尝试使用以下代码上传图像:
NSString *link = @"http://www.google.com/logos/2011/houdini11-hp.jpg";
NSURL *url1 = [NSURL URLWithString:link];
NSData *data1 = [NSData dataWithContentsOfURL:url1];
UIImage *img1 = [[UIImage alloc] initWithData:data1];
NSMutableDictionary *photos = [NSMutableDictionary dictionaryWithObjectsAndKeys:
img1, @"picture",
nil];
[facebook requestWithMethodName:@"photos.upload"
andParams:photos
andHttpMethod:@"POST"
andDelegate:self];
我收到此错误:
错误域 = 操作无法完成。 (facebookErrDomain 错误 324。)
提前致谢。
I am working with the Facebook method API with iPhone-SDK. After authorizing, I tried to upload an image, using this code:
NSString *link = @"http://www.google.com/logos/2011/houdini11-hp.jpg";
NSURL *url1 = [NSURL URLWithString:link];
NSData *data1 = [NSData dataWithContentsOfURL:url1];
UIImage *img1 = [[UIImage alloc] initWithData:data1];
NSMutableDictionary *photos = [NSMutableDictionary dictionaryWithObjectsAndKeys:
img1, @"picture",
nil];
[facebook requestWithMethodName:@"photos.upload"
andParams:photos
andHttpMethod:@"POST"
andDelegate:self];
I got this error:
error DOMAIN = Operation could not be completed. (facebookErrDomain error 324.)
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在此处查看所有错误代码。
http://www. takwing.idv.hk/tech/fb_dev/faq/general/gen_10.html
所以错误是缺少或无效的图像文件
You can see all error code here..
http://www.takwing.idv.hk/tech/fb_dev/faq/general/gen_10.html
So error is Missing or invalid image file