本文整理汇总了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);
}