Laravel Socialite令牌令人耳目一新

时间:2017-07-11 13:12:40

标签: php laravel laravel-socialite

社交名媛获得的access_token(通过Socialite::driver(self::PROVIDER)->user()的有效时间有限。对于谷歌来说,这是一个小时。

我可以通过将重定向调用更改为:

来获取refresh_token
Socialite::driver(self::PROVIDER)->stateless()->with([
    'access_type' => 'offline',
])->redirect()

我可以通过调用

一小时阅读基于access_token的用户数据
// $token = read_stored_access_token()
\Socialite::driver(self::PROVIDER)->userFromToken($accessToken);

一小时后,当令牌无效时,Google API会开始返回401 Unauthorized,而Socialize会将其传播出去:

(1/1) ClientException
Client error: `GET https://www.googleapis.com/plus/v1/people/me?prettyPrint=false` resulted in a `401 Unauthorized` response:
{"error":{"errors":[{"domain":"global","reason":"authError","message":"Invalid Credentials","locationType":"header","loc (truncated...)

现在使用refresh_token,我应该可以轻松刷新access_token。但我无法在Socialize文档或源代码中找到允许我这样做的提及。

真的是如何实现此功能的唯一方法是使用Google的API库并手动执行此操作吗?它不会破坏使用Socialize的整个想法吗?

注意:我试图避免再次拨打redirect(),因为它可能会强制用户每小时选择一个Google帐户,这很烦人。

谢谢!

2 个答案:

答案 0 :(得分:0)

return Socialite::driver('google')
    ->scopes() 
    ->with(["access_type" => "offline", "prompt" => "consent select_account"])
    ->redirect();

默认情况下,仅在首次授权时才返回refresh_token,通过添加“ prompt” =>“ consent select_account”,我们强制每次都将其返回。

答案 1 :(得分:0)

这是我通过离线访问从“社交”中保存用户的方法:

            $newUser                       = new User;
            $newUser->name                 = $user->name;
            $newUser->email                = $user->email;
            $newUser->google_id            = $user->id;
            $newUser->google_token         = $user->token;
            $newUser->token_expires_at     = Carbon::now()->addSeconds($user->expiresIn);
            $newUser->google_refresh_token = $user->refreshToken;
            $newUser->avatar               = $user->avatar;
            $newUser->avatar_original      = $user->avatar_original;
            $newUser->save();

这是我的令牌刷新解决方案。我是通过在用户模型中为令牌属性创建访问器来实现的:

    /**
     * Accessor for google token of the user
     * Need for token refreshing when it has expired
     *
     * @param $token
     *
     * @return string
     */
    public function getGoogleTokenAttribute( $token ) {
        //Checking if the token has expired
        if (Carbon::now()->gt(Carbon::parse($this->token_expires_at))) {
            $url  = "https://www.googleapis.com/oauth2/v4/token";
            $data = [
                "client_id"     => config('services.google.client_id'),
                "client_secret" => config('services.google.client_secret'),
                "refresh_token" => $this->google_refresh_token,
                "grant_type"    => 'refresh_token'
            ];

            $ch = curl_init($url);

            curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/x-www-form-urlencoded']);
            curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
            curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
            curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
            curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
            $result = curl_exec($ch);
            $err    = curl_error($ch);

            curl_close($ch);

            if ($err) {
                return $token;
            }
            $result = json_decode($result, true);

            $this->google_token     = isset($result['access_token']) ? $result['access_token'] : "need_to_refresh";
            $this->token_expires_at = isset($result['expires_in']) ? Carbon::now()->addSeconds($result['expires_in']) : Carbon::now();
            $this->save();

            return $this->google_token;

        }

        return $token;
    }