1
0
Fork 0
mirror of synced 2024-07-02 21:20:58 +12:00

chore: added getAccessToken adapter

This commit is contained in:
Christy Jacob 2019-10-02 19:27:52 +05:30
parent 0dd36890ef
commit 44c179bb02

View file

@ -27,13 +27,11 @@ class Dropbox extends OAuth
*/ */
public function getLoginURL(): string public function getLoginURL(): string
{ {
return 'https://login.microsoftonline.com/common/oauth2/v2.0/authorize?'. return 'https://www.dropbox.com/oauth2/authorize?'.
'client_id='.urlencode($this->appID). 'client_id='.urlencode($this->appID).
'&redirect_uri='.urlencode($this->callback). '&redirect_uri='.urlencode($this->callback).
'&state='.urlencode(json_encode($this->state)). '&state='.urlencode(json_encode($this->state)).
'&scope=offline_access+user.read'. '&response_type=code';
'&response_type=code'.
'&response_mode=query';
} }
/** /**
@ -43,17 +41,16 @@ class Dropbox extends OAuth
*/ */
public function getAccessToken(string $code): string public function getAccessToken(string $code): string
{ {
$headers[] = 'Content-Type: application/x-www-form-urlencoded'; $headers[] = 'Content-Type: application/x-www-form-urlencoded';
$accessToken = $this->request( $accessToken = $this->request(
'POST', 'POST',
'https://login.microsoftonline.com/common/oauth2/v2.0/token', 'https://api.dropboxapi.com/oauth2/token',
$headers, $headers,
'code='.urlencode($code). 'code='.urlencode($code).
'&client_id='.urlencode($this->appID). '&client_id='.urlencode($this->appID).
'&client_secret='.urlencode($this->appSecret). '&client_secret='.urlencode($this->appSecret).
'&redirect_uri='.urlencode($this->callback). '&redirect_uri='.urlencode($this->callback).
'&scope=offline_access+user.read'.
'&grant_type=authorization_code' '&grant_type=authorization_code'
); );
@ -123,7 +120,7 @@ class Dropbox extends OAuth
{ {
if (empty($this->user)) { if (empty($this->user)) {
$headers[] = 'Authorization: Bearer '. urlencode($accessToken); $headers[] = 'Authorization: Bearer '. urlencode($accessToken);
$user = $this->request('GET', 'https://graph.microsoft.com/v1.0/me', $headers); $user = $this->request('GET', 'https://api.dropboxapi.com/2/users/get_current_account', $headers);
$this->user = json_decode($user, true); $this->user = json_decode($user, true);
} }