0

I am working on a app where I need to share videos on Facebook. When I tried developer.facebook.com for solution I found use the graph api to upload a video in ios . It shares video by graph API. Will the graph API work in iOS 6? Please suggest. Also provide any sample code if you have.

Thanks in advance.

NANNAV
  • 4,875
  • 4
  • 32
  • 50
Sanchit Paurush
  • 6,114
  • 17
  • 68
  • 107
  • 1
    Check this link : http://stackoverflow.com/questions/12861615/upload-video-to-facebook-using-facebook-new-sdk-on-ios-6-0 – Mike Jun 04 '13 at 07:39

2 Answers2

1

Try with this I used Facebook SDK 3.1 https://developers.facebook.com/ios/

.h file

    #import <FacebookSDK/FacebookSDK.h>
    extern NSString *const SCSessionStateChangedNotificationCamera;

.m file

   NSString *const SCSessionStateChangedNotificationCamera = @"com.facebook.Scrumptious:SCSessionStateChangedNotification";

   -(IBAction)btnFacebookShareClick:(id)sender {
    if (![self openSessionWithAllowLoginUI:YES]) {
           [self showLoginView];
       }
   }

   #pragma mark -
   #pragma mark - Facebook Method

   - (void) performPublishAction:(void (^)(void)) action {
       if ([FBSession.activeSession.permissions indexOfObject:@"publish_actions"] == NSNotFound) {
           [FBSession.activeSession reauthorizeWithPublishPermissions:[NSArray arrayWithObject:@"publish_actions"] defaultAudience:FBSessionDefaultAudienceFriends completionHandler:^(FBSession *session, NSError *error) {
               if (!error) {
                   action();
               }
           }];
       }
       else {
           action();
       }
   }

   #pragma mark -
   #pragma mark Facebook Login Code

   - (void)showLoginView {
       [self dismissViewControllerAnimated:NO completion:nil];
       [self performSelector:@selector(showLoginView1) withObject:nil afterDelay:1.5f];
   }

   - (void)showLoginView1 {

   }

   - (void)sessionStateChanged:(FBSession *)session state:(FBSessionState)state error:(NSError *)error {
       switch (state) {
           case FBSessionStateOpen: {
               if (self != nil) {
                   [[FBRequest requestForMe] startWithCompletionHandler: ^(FBRequestConnection *connection, NSDictionary<FBGraphUser> *user, NSError *error) {
                       if (error) {
                           //error
                       }else{
                           if ([FBSession.activeSession.permissions indexOfObject:@"publish_actions"] == NSNotFound) {
                               NSArray *permissions = [[NSArray alloc] initWithObjects: @"publish_actions", @"publish_stream", nil];
                               [FBSession.activeSession reauthorizeWithPublishPermissions:permissions defaultAudience:FBSessionDefaultAudienceFriends completionHandler:^(FBSession *session, NSError *error) {
                                   if (!error) {
                                       [self uploadVideoOnFacebook];
                                   }
                                   else {
                                       NSLog(@"%@",error);
                                   }
                               }];
                           }
                           else {
                               [self uploadVideoOnFacebook];
                           }
                       }
                   }];
               }
               FBCacheDescriptor *cacheDescriptor = [FBFriendPickerViewController cacheDescriptor];
               [cacheDescriptor prefetchAndCacheForSession:session];
           }
               break;
           case FBSessionStateClosed: {
               [self StopSpinner];
               UIViewController *topViewController = [self.navigationController topViewController];
               UIViewController *modalViewController = [topViewController modalViewController];
               if (modalViewController != nil) {
                   [topViewController dismissViewControllerAnimated:YES completion:nil];
               }
               //[self.navigationController popToRootViewControllerAnimated:NO];

               [FBSession.activeSession closeAndClearTokenInformation];

               [self performSelector:@selector(showLoginView) withObject:nil afterDelay:0.5f];
           }
               break;
           case FBSessionStateClosedLoginFailed: {
               [self StopSpinner];
               [self performSelector:@selector(showLoginView) withObject:nil afterDelay:0.5f];
           }
               break;
           default:
               break;
       }

       [[NSNotificationCenter defaultCenter] postNotificationName:SCSessionStateChangedNotificationCamera object:session];

       if (error) {
           UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:[NSString stringWithFormat:@"Error: %@", [CameraViewController FBErrorCodeDescription:error.code]] message:error.localizedDescription delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
           [alertView show];
           [alertView release];
       }
   }

   - (BOOL)openSessionWithAllowLoginUI:(BOOL)allowLoginUI {
       NSArray *permissions = [[NSArray alloc] initWithObjects: @"publish_actions", @"publish_stream", nil];    
       return [FBSession openActiveSessionWithPublishPermissions:permissions defaultAudience:FBSessionDefaultAudienceFriends allowLoginUI:allowLoginUI completionHandler:^(FBSession *session, FBSessionState state, NSError *error) {
           if (!error) {
               [self sessionStateChanged:session state:state error:error];
           }
           else {
               NSLog(@"%@",error);
           }
       }];
   }

   + (NSString *)FBErrorCodeDescription:(FBErrorCode) code {
       switch(code){
           case FBErrorInvalid :{
               return @"FBErrorInvalid";
           }
           case FBErrorOperationCancelled:{
               return @"FBErrorOperationCancelled";
           }
           case FBErrorLoginFailedOrCancelled:{
               return @"FBErrorLoginFailedOrCancelled";
           }
           case FBErrorRequestConnectionApi:{
               return @"FBErrorRequestConnectionApi";
           }case FBErrorProtocolMismatch:{
               return @"FBErrorProtocolMismatch";
           }
           case FBErrorHTTPError:{
               return @"FBErrorHTTPError";
           }
           case FBErrorNonTextMimeTypeReturned:{
               return @"FBErrorNonTextMimeTypeReturned";
           }
           case FBErrorNativeDialog:{
               return @"FBErrorNativeDialog";
           }
           default:
               return @"[Unknown]";
       }
   }

   -(void) uploadVideoOnFacebook {
       NSURL *pathURL;
           NSData *videoData;


               pathURL = [NSURL URLWithString:self.strUploadVideoURL];
               videoData = [NSData dataWithContentsOfURL:[NSURL URLWithString:self.strUploadVideoURL]];


           NSString *strDesc;

               strDesc = txtCaption.text;


           NSDictionary *videoObject = @{@"title": @"application Name",@"description": strDesc,[pathURL absoluteString]: videoData};
           FBRequest *uploadRequest = [FBRequest requestWithGraphPath:@"me/videos" parameters:videoObject HTTPMethod:@"POST"];
           [self.view setUserInteractionEnabled:NO];

           [uploadRequest startWithCompletionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
               if (!error)
                   [AJNotificationView showNoticeInView:self.view type:AJNotificationTypeGreen title:@"Video uploaded successfully" linedBackground:AJLinedBackgroundTypeAnimated hideAfter:3.0];
               else
                   [AJNotificationView showNoticeInView:self.view type:AJNotificationTypeRed title:@"Video uploaded error" linedBackground:AJLinedBackgroundTypeAnimated hideAfter:3.0];

               [NSTimer scheduledTimerWithTimeInterval:3.0 target:self selector:@selector(popViewAfterMKInfo) userInfo:nil repeats:NO];
}];
       }
SAMIR RATHOD
  • 3,512
  • 1
  • 20
  • 45
0

yes, you can do this, Facebook just has released its new framework 3.5 which will easily work for iOS5 and iOS6 http://developers.facebook.com/ios/

Manish Agrawal
  • 10,958
  • 6
  • 44
  • 76