iPhone 应用程序:第一次尝试时未上传照片
我正在使用图形 API 进行照片发布,如下所示:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:theImage, @"source", nil];
[appDelegate.facebook requestWithGraphPath:@"me/photos"
andParams:params
andHttpMethod:@"POST"
andDelegate:appDelegate];
我遇到的问题是,第一次尝试为我的应用程序创建新相册,但实际上并未发布照片。相册是空的。如果我随后提出第二个请求,照片就会成功发布。知道我可能做错了什么吗?谢谢。
I am doing a photo publish with the graph API like this:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:theImage, @"source", nil];
[appDelegate.facebook requestWithGraphPath:@"me/photos"
andParams:params
andHttpMethod:@"POST"
andDelegate:appDelegate];
The problem I get is that the first attempt creates the new album for my app but does not actually post the photo. The album is empty. If I then make a second request the photo is successfully published. Any idea what I may be doing wrong? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查您的应用程序与 facebook 相关的权限
Check the permissions that your application have related with facebook