![]() |
![]()
| ![]() |
![]()
NAMEFacebook::Graph::AccessToken - Acquire an access token from Facebook. VERSIONversion 1.1205 SYNOPSISmy $fb = Facebook::Graph->new( secret => $facebook_application_secret, app_id => $facebook_application_id, postback => 'https://www.yourapplication.com/facebook/postback', ); my $token_response_object = $fb->request_access_token($code_from_authorize_postback); my $token_string = $token_response_object->token; my $token_expires_epoch = $token_response_object->expires; DESCRIPTIONAllows you to request an access token from Facebook so you can make privileged requests on the Graph API. METHODSnew ( [ params ] )
uri_as_string ()Returns the URI that will be called to fetch the token as a string. Mostly useful for debugging and testing. request ()Makes a request to Facebook to fetch an access token. Returns a Facebook::Graph::AccessToken::Response object. build ()Checks for either access_token or code and dies if has neither. LEGALFacebook::Graph is Copyright 2010 - 2017 Plain Black Corporation (<http://www.plainblack.com>) and is licensed under the same terms as Perl itself.
|