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"];