當前位置: 首頁>>代碼示例>>PHP>>正文


PHP oauth_client_class::CheckAccessToken方法代碼示例

本文整理匯總了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);
}
開發者ID:olivercieliszak,項目名稱:orw,代碼行數:31,代碼來源:login_check_with_facebook.php


注:本文中的oauth_client_class::CheckAccessToken方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。