I am trying to upload video from the iPhone application using FBConnect. Actually I have tried several ways but unfortunately without any success.
First. Using "facebook.video.upload" REST method and tricks described here iPhone Facebook Video Upload. As a result server returns an empty response and anything more happens afterwards. Video doesn't appear on facebook. Have tried different types of facebook apps by the way, such as WebApp and Native one.
Second. Using "me/videos" GRAPH method and below code to initiate uploading
>
NSMutableDictionary *params = [NSMutableDictionary
dictionaryWithObjectsAndKeys:movieData,
@"source", @"File.mov", @"filename",
nil];
[m_facebook requestWithGraphPath:@"me/videos"andParams:params andHttpMethod:@"POST" andDelegate:self];
In such a case I'm getting the next errors:
a) An active access token must be used to query information about the current user.
b) Video file format is not supported.
Third. Simply send an email with video file attached to video@facebook.com. Doesn't work. However this solution is not so interested as previous are.
I have spent 2 days figuring those things out and it makes me crazy. Could someone please share a working example of video uploading or at least point me out where I am wrong in my samples.
Thank you!