捕获并将图像发布到iOS中的页面相册中

时间:2014-08-06 06:27:47

标签: facebook-graph-api post facebook-page

我正在尝试将图片发布到网页相册中,我使用此/ {album-id} /照片将图片发布到微粒网页相册中,但使用这个我可以发布到个人资料相册中。我如何将图像发布到页面相册中。我用这个代码发帖:

NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:image, @"source",nil ];



 /* make the API call */
[FBRequestConnection startWithGraphPath:@"/607843282662042/photos"
                             parameters:params
                             HTTPMethod:@"POST"
                      completionHandler:^(
                                          FBRequestConnection *connection,
                                          id result,
                                          NSError *error
                                          )
                    {


                          /* handle the result */

                          NSLog(@" %@", result);

                          self.uploadingText.alpha = 0;

                      }];

0 个答案:

没有答案