I have an app that posts native (MOV files) video to Facebook using the Facebook SDK for iOS. It worked without problems till a few weeks ago where it started failing with the f
Just before FBRequest
Add a line to open FBRequestConnection
Worked for me.
[FBRequestConnection startWithGraphPath:@"me/videos"
completionHandler:^(FBRequestConnection *connection,
id result, NSError *error)
{
FBRequest *uploadRequest =
[FBRequest requestWithGraphPath:@"me/videos"
parameters:params HTTPMethod:@"POST"];
}];