iphone - Post a photo to an Album on a Facebook fan page without being the admin, -


from ios application, post photo fan page i not admin. doing code:

nsdata* imagedata = uiimagejpegrepresentation(image_, 90); nsmutabledictionary * params = [nsmutabledictionary dictionarywithobjectsandkeys:                                 @"hello", @"message",                                 imagedata, @"source",                                 accesstoken, @"access_token",                                 nil];  [fbrequestconnection startwithgraphpath:@"{pageid}/photos"                              parameters:params                              httpmethod:@"post"                       completionhandler:^(fbrequestconnection *connection, id result, nserror *error)  {      dlog(@"error %@",error);      dlog(@"result %@",result);  }]; 

but now, want photo comes specific album of fan page. tried specify "albumid" @ path: {albumid}/photos. post correctly wall not in album of fan page.


Comments

Popular posts from this blog

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c++ - CryptStringToBinary API behavior -