NSLog(@"%@",selectedImage);
if (self.selectedImage != nil) {
UIImage *img = self.selectedImage;
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
img, @"picture",
@"iOS Apps with FBConnect",@"caption",
nil];
[facebook requestWithGraphPath:@"me/photos/Wall"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
[img release];
}
我有这段代码。, 我使用Facebook图形API将照片发布到我的墙上。 但照片已上传到其他专辑
我可以选择相册来上传照片吗? 要么 我想将我的照片上传到“Wall Photos”专辑??