2

从我的 iOS 应用程序中,我想将照片发布到我不是管理员的粉丝页面。我在这段代码上做得很好:

NSData* imageData = UIImageJPEGRepresentation(image_, 90);
NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                @"hello", @"message",
                                imageData, @"source",
                                accessToken, @"access_token",
                                nil];

[FBRequestConnection startWithGraphPath:@"{pageID}/photos"
                             parameters:params
                             HTTPMethod:@"POST"
                      completionHandler:^(FBRequestConnection *connection, id result, NSError *error)
 {
     DLog(@"error %@",error);
     DLog(@"result %@",result);
 }];

但是现在,我想把那张照片放到粉丝页面的特定相册中。我试图在路径中指定“albumId”:{albumID}/photos。它正确地发布了它,但在我的墙上而不是在粉丝页面的相册中。

4

0 回答 0