开发者

iPhone - A problem with uploading video to facebook

开发者 https://www.devze.com 2023-03-03 17:59 出处:网络
I am开发者_StackOverflow社区 having a problem uploading a video to facebook. Last month, it worked OK.

I am开发者_StackOverflow社区 having a problem uploading a video to facebook.

Last month, it worked OK.

I can still log in to FaceBook with my appKey and appSecretKey, but if I request 'facebook.video.upload' method to facebook, the site does not reply.

In the past, it worked perfectly.

What is the problem? Has FaceBook updated the interface?

Thanks!


For me I use FBVideoUpload (source code here) and it works fine, so I put my code here:

m_Facebook = [[Facebook alloc] init];
m_FacebookUploader = [[FBVideoUpload alloc]init]; 
NSArray *permissions =  [NSArray arrayWithObjects:@"publish_stream", @"offline_access",nil];
m_Facebook.forceOldStyleAuth = YES;
[m_Facebook authorize:APP_ID permissions:permissions delegate:self];

In Facebook delegate methods

- (void)fbDidLogin
{
    NSURL *movieURL = [NSURL fileURLWithPath:m_MoviePath];

    NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys:
                            @"Look at my funny video !", @"title",
                            @"A message", @"description",
                            nil];

    [m_FacebookUploader setApiKey:APP_ID];
    [m_FacebookUploader setAccessToken:m_Facebook.accessToken];
    [m_FacebookUploader setAppSecret:APP_SECRET];
    [m_FacebookUploader startUploadWithURL:movieURL params:params delegate:self];

}
0

精彩评论

暂无评论...
验证码 换一张
取 消