-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathrefreshToken.php
42 lines (33 loc) · 1.17 KB
/
refreshToken.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
require_once(__DIR__ . '/vendor/autoload.php');
use QuickBooksOnline\API\DataService\DataService;
session_start();
function refreshToken()
{
// Create SDK instance
$config = include('config.php');
/*
* Retrieve the accessToken value from session variable
*/
$accessToken = $_SESSION['sessionAccessToken'];
$dataService = DataService::Configure(array(
'auth_mode' => 'oauth2',
'ClientID' => $config['client_id'],
'ClientSecret' => $config['client_secret'],
'RedirectURI' => $config['oauth_redirect_uri'],
'baseUrl' => "development",
'refreshTokenKey' => $accessToken->getRefreshToken(),
'QBORealmID' => "The Company ID which the app wants to access",
));
/*
* Update the OAuth2Token of the dataService object
*/
$OAuth2LoginHelper = $dataService->getOAuth2LoginHelper();
$refreshedAccessTokenObj = $OAuth2LoginHelper->refreshToken();
$dataService->updateOAuth2Token($refreshedAccessTokenObj);
$_SESSION['sessionAccessToken'] = $refreshedAccessTokenObj;
print_r($refreshedAccessTokenObj);
return $refreshedAccessTokenObj;
}
$result = refreshToken();
?>