I\'ve been working on this for a couple of days now and just can\'t seem to find a straight answer or example anywhere. I am trying to upload a video to facebook from within
You can use new graph api to upload video :
You can use this fork https://github.com/johnmph/facebook-ios-sdk and have a param dictionary like that :
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:movieData, @"source", @"File.mov", @"filename", nil];
[m_facebook requestWithGraphPath:@"me/videos" andParams:params andHttpMethod:@"POST" andDelegate:self];
I added also to this fork a method to track the upload status (by example to use with a progress bar)