1
0
Fork 0
mirror of synced 2024-07-01 12:40:34 +12:00

Merge pull request #330 from christyjacob4/master

chore: updated the oAuth token url for google
This commit is contained in:
Eldad A. Fux 2020-05-21 00:23:54 +03:00 committed by GitHub
commit fc9b7f6157
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,8 @@ class Google extends OAuth2
*/ */
protected $scopes = [ protected $scopes = [
'https://www.googleapis.com/auth/userinfo.email', 'https://www.googleapis.com/auth/userinfo.email',
'https://www.googleapis.com/auth/userinfo.profile' 'https://www.googleapis.com/auth/userinfo.profile',
'openid'
]; ];
/** /**
@ -60,7 +61,7 @@ class Google extends OAuth2
{ {
$accessToken = $this->request( $accessToken = $this->request(
'POST', 'POST',
'https://www.googleapis.com/oauth2/'.$this->version.'/token?'.http_build_query([ 'https://oauth2.googleapis.com/token?'.http_build_query([
'code' => $code, 'code' => $code,
'client_id' => $this->appID, 'client_id' => $this->appID,
'client_secret' => $this->appSecret, 'client_secret' => $this->appSecret,