php – google登录oauth2每次重新询问访问权限

前端之家收集整理的这篇文章主要介绍了php – google登录oauth2每次重新询问访问权限前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用google oauth2 api登录系统.它几乎正常工作,用户可以访问我的Web应用程序,读取信息并连接用户.问题是,一旦他们离开或更改浏览器,回到我的网站,他们再次被要求提供访问权限.

我不需要离线访问,因为除了签入用户之外我没有使用任何API调用.无论如何我被困住了,需要一些帮助!

我正在使用谷歌PHP库(https://code.google.com/p/google-api-PHP-client/wiki/OAuth2),我甚至将ApprovalPrompt设置为auto.仍然没有运气.

我的代码

public function googleLogin()
{
    $this->set('connect',"Google login");
    $client = new apiClient();
    $client->setApprovalPrompt('auto');
    $client->setApplicationName("Authentication");
    $client->setClientId(G_OAUTH2_APP_ID);
    $client->setClientSecret(G_OAUTH2_SECRET);
    $client->setRedirectUri(G_REDIRECT_URI);
    $client->setDeveloperKey(G_DEV_KEY);
    $oauth2 = new apiOauth2Service($client);

    if (isset($_GET['code'])) {
        $client->authenticate();
        $_SESSION['token'] = $client->getAccessToken();
        $redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
        header('Location: ' . filter_var($redirect,FILTER_SANITIZE_URL));

    }

    if (isset($_SESSION['token'])) {
        $client->setAccessToken($_SESSION['token']);
    }

    if (isset($_REQUEST['logout'])) {
        unset($_SESSION['token']);
        $client->revokeToken();
    }
    //print_r($client->getAccessToken()); exit;

    if ($client->getAccessToken()) {
        $user = $oauth2->Guserinfo->get();


        // These fields are currently filtered through the PHP sanitize filters.
        // See http://www.PHP.net/manual/en/filter.filters.sanitize.PHP
        //$email = filter_var($user['email'],FILTER_SANITIZE_EMAIL);
        //$img = filter_var($user['picture'],FILTER_VALIDATE_URL);

        // The access token may have been updated lazily.
        $_SESSION['token'] = $client->getAccessToken();

        //do stuff with user data
        $data = $this->linkUser($user,"google");
        if ($data['state']=="createUser") {
            $this->set("data",$data);
        }

    } else {
        $authUrl = $client->createAuthUrl();
        header("Location: " . $authUrl);
    }
}

编辑:
添加了行$client-> setAccessType(“online”);
我不知道这是否是我必须做的唯一工作才能使它工作或者我在浏览器/操作系统之间有错误
上次我尝试使用lion / chrome它没有用,但是在w7 / firefox上没问题.好吧,或者我只是在放松自己的想法:p

关于另一个问题: Google API – forces to Grant Permission Every time

有人指出你可以这样做:

$客户端 – > setApprovalPrompt( ‘自动’);

原文链接:https://www.f2er.com/php/134496.html

猜你在找的PHP相关文章