Как разместить изображения в Facebook в приложении для iPhone? - PullRequest
0 голосов
/ 23 января 2012

Может кто-нибудь, пожалуйста, помогите мне опубликовать фотографии на Facebook, используя цель c для приложения для iphone. Я попробовал это сделать, но он завершается, когда я проверяю, что iphone.its работает правильно в симуляторе. Я использую Graph API для разработки моего приложения.

-(void)fbGraphCallback:(id)sender {

    if ((fbGraph.accessToken == nil) || ([fbGraph.accessToken length] == 0)) {

        NSLog(@"You pressed the 'cancel' or 'Dont Allow' button, you are NOT logged into Facebook...I require you to be logged in & approve access before you can do anything useful....");
        //restart the authentication process.....
        [fbGraph authenticateUserWithCallbackObject:self
                                        andSelector:@selector(fbGraphCallback:)
                             andExtendedPermissions:@"user_photos,user_videos,publish_stream,offline_access,user_checkins,friends_checkins"];
        [self.view addSubview:viewshare];
    } 
    else {  
        NSMutableDictionary *variables = [NSMutableDictionary dictionaryWithCapacity:2];

        //imgPicture is my image view name
        NSLog(@"the Data::%@\n",imgPicture.image);

        FbGraphFile *graph_file = [[FbGraphFile alloc] initWithImage:imgPicture.image];

        [variables setObject:graph_file forKey:@"file"];

        [variables setObject:[NSString stringWithFormat:@"%@", txtComment.text] forKey:@"message"];

        FbGraphResponse *fb_graph_response = [fbGraph doGraphPost:@"me/photos" withPostVars:variables];
        NSLog(@"postPictureButtonPressed:  %@", fb_graph_response.htmlResponse);

        NSLog(@"Now log into Facebook and look at your profile & photo albums...");

        txtComment.text=@" ";
        [txtComment setHidden:YES];
        [lblcmt setHidden:YES];
        UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:nil message:@"Successfully posted...Now log into Facebook & look at your profile" delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
        [alertView show];
        [alertView release];
    }
    [fbGraph release];
}

1 Ответ

1 голос
/ 23 января 2012

Сначала я проверяю, имеет ли facebook (объект facebook) допустимый сеанс:

if (![facebook_ isSessionValid]) {

   permissions_ = [[NSArray arrayWithObjects:@"read_stream", @"publish_stream", @"offline_access",nil] retain];
   [facebook_ authorize:permissions_];

}

Когда я могу гарантировать, что зашел на Facebook, я отправляю изображение так:

NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   image, @"picture",
                                   message, @"message",
                                   nil];

[facebook_ requestWithGraphPath:@"me/photos"
                      andParams:params
                  andHttpMethod:@"POST"
                    andDelegate:self]; 

Наконец, я проверяю этот метод, чтобы убедиться, что пост с изображением был успешным или нет:

-(void)request:(FBRequest *)request didFailWithError:(NSError *)error {

    //Error

}

-(void)request:(FBRequest *)request didLoad:(id)result {

    //Succes
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...