本文整理匯總了PHP中oauth_client_class::CheckAccessToken方法的典型用法代碼示例。如果您正苦於以下問題:PHP oauth_client_class::CheckAccessToken方法的具體用法?PHP oauth_client_class::CheckAccessToken怎麽用?PHP oauth_client_class::CheckAccessToken使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類oauth_client_class
的用法示例。
在下文中一共展示了oauth_client_class::CheckAccessToken方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: dirname
$client->server = 'Facebook';
$client->redirect_uri = 'http://' . $_SERVER['HTTP_HOST'] . dirname(strtok($_SERVER['REQUEST_URI'], '?')) . '/login_check_with_facebook.php';
$client->client_id = '';
$application_line = __LINE__;
$client->client_secret = '';
if (strlen($client->client_id) == 0 || strlen($client->client_secret) == 0) {
die('Please go to Facebook Apps page https://developers.facebook.com/apps , ' . 'create an application, and in the line ' . $application_line . ' set the client_id to App ID/API Key and client_secret with App Secret');
}
/* The initial page to redirect is not set;
*/
$redirect_url = null;
/* API permissions
*/
$client->scope = 'email';
if ($success = $client->Initialize()) {
if ($success = $client->CheckAccessToken($redirect_url)) {
/*
* Is there a valid access token or shall we need to
* redirect the user to the OAuth server authorization page?
*/
if (isset($redirect_url)) {
/*
* It seems the access token was not yet retrieved
* or it was expired and could not be renewed
*/
} elseif (strlen($client->access_token)) {
$success = $client->CallAPI('https://graph.facebook.com/me', 'GET', array(), array('FailOnAccessError' => true), $user);
}
}
$success = $client->Finalize($success);
}