当前位置: 首页>>代码示例>>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;未经允许,请勿转载。