Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can someone please find an error in this code m trying to upload a video to facebook with this code but somehow it gives me error please see if you can find anything

-(IBAction)selectvideo{

UIImagePickerController *imagePicker = [[UIImagePickerController alloc] init];
imagePicker.delegate = self;
imagePicker.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;
imagePicker.mediaTypes = [NSArray arrayWithObject:(NSString *)kUTTypeMovie];
[self presentModalViewController:imagePicker animated:YES];
[imagePicker release];       

and the next method is ..

-(void) imagePickerController:(UIImagePickerController *)UIPicker didFinishPickingMediaWithInfo:(NSDictionary *) info                 

[UIPicker dismissModalViewControllerAnimated:YES];
NSString *filePath =[info objectForKey:@"UIImagePickerControllerMediaURL"];
NSLog(@"%@",filePath);



NSData *videoData = [NSData dataWithContentsOfFile:filePath];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               videoData, @"video.mov",
                               @"video/quicktime", @"contentType",
                               @"Video Test Title", @"title",
                               @"Video Test Description", @"description",nil];



[FBRequest requestWithGraphPath:@"me/videos" parameters:params HTTPMethod:@"POST"];
share|improve this question
show us the console message.. – vishy Nov 20 '12 at 6:00

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.