2

我遇到了一个奇怪的问题,当我从 web 端向过去的事件添加图片时,一切正常,但是当我从自己的 iOS 应用程序中这样做时,也不例外,我只是看不到新添加的图像。我们不能从移动客户端将照片添加到过去的事件中吗?谁都知道。

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:image,@"source", nil];
[facebookDelegate requestWithGraphPath:[NSString stringWithFormat:@"%@/photos",self.eventID] andParams:params andHttpMethod:@"POST" andDelegate:self];

没有错误,但我只是看不到上传的图片。

还有一个问题,如何用graph api设置事件的头像?我使用了以下代码:

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:image,@"picture", nil];
[facebookDelegate requestWithGraphPath:self.eventID andParams:params andHttpMethod:@"POST" andDelegate:self];

它也不起作用。更重要的是,我想知道我们是否可以从网络上传图片,所以我们只提供图片链接到 facebook 吗?谢谢。

4

1 回答 1

0

我想你现在可以试试第一个。它现在工作

于 2012-10-08T15:39:50.610 回答