1
0
Fork 0
mirror of synced 2024-10-03 10:46:27 +13:00

feat: getAccessToken Done

This commit is contained in:
Christy Jacob 2019-10-13 23:22:15 +04:00
parent 17590846a1
commit 681acbdffa

View file

@ -47,18 +47,16 @@ class Stackoverflow extends OAuth
*/
public function getAccessToken(string $code): string
{
var_dump($code);
exit();
$headers[] = 'Content-Type: application/x-www-form-urlencoded';
$accessToken = $this->request(
'POST',
'https://www.googleapis.com/oauth2/'.$this->version.'/token?'.
'code='.urlencode($code).
'&client_id='.urlencode($this->appID).
'&client_secret='.urlencode($this->appSecret).
'&redirect_uri='.urlencode($this->callback).
'&scope='.
'&grant_type=authorization_code'
'https://stackoverflow.com/oauth/access_token/json',
$headers,
'code=' . urlencode($code) .
'&client_id=' . urlencode($this->appID) .
'&client_secret=' . urlencode($this->appSecret).
'&redirect_uri='.urlencode($this->callback)
);
$accessToken = json_decode($accessToken, true);