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

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -