Post a photo to an Album on a Facebook fan page without being the admin,
问题 From my iOS application, i would like to post a photo to a fan page where i am not the admin. I am doing well with that code: 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,