How to post photos to facebook iphone fbconnect

后端 未结 2 1920
时光说笑
时光说笑 2021-01-07 12:26

Hi I\'m using FBConnect to post to facebook, now I need to post photos from library or taken with the cam, does anyone has a clue how to do this ?? I\'ve searched in google

2条回答
  •  一整个雨季
    2021-01-07 13:17

    You can now post photos on your wall with requestWithGraphPath method as follows.

    NSData *yourImageData= UIImagePNGRepresentation(yourImage);
    
    NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   @"Your text with picture", @"message", yourImageData, @"source", nil];
    
    [facebook requestWithGraphPath:@"/me/photos" andParams:params andHttpMethod:@"POST" andDelegate:self];
    

提交回复
热议问题