iphone - What does the access_token in the following facebook graph request means? and how to get it? -


i want show list photo's or album's of facebook user in iphone app, in should able save photo's photo galleray. found examples foe php unable reproduce same in iphone asirequest. want use following graph request how access_token in session object.

 https://graph.facebook.com/me/albums?access_token=   //graphrequest // delegate end after user login, i'm querying fql,   - (void)session:(fbsession*)session didlogin:(fbuid)uid {     _label.text = @"";       nsstring* fql = [nsstring stringwithformat:                      @"select uid,name user uid == %lld", session.uid];     nsdictionary* params = [nsdictionary dictionarywithobject:fql forkey:@"query"];     [[fbrequest requestwithdelegate:self] call:@"facebook.fql.query" params:params]; } 

or there work around meet requirement? in advance.

you need first authenticate access code. use access code subsequent communication.

http://developers.facebook.com/docs/authentication/


Comments

Popular posts from this blog

Javascript line number mapping -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -