%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/vendor/quickbooks/v3-php-sdk/src/_Samples/ |
Upload File : |
<?php
//Replace the line with require "vendor/autoload.php" if you are using the Samples from outside of _Samples folder
include('../config.php');
use QuickBooksOnline\API\Core\ServiceContext;
use QuickBooksOnline\API\DataService\DataService;
use QuickBooksOnline\API\PlatformService\PlatformService;
use QuickBooksOnline\API\Core\Http\Serialization\XmlObjectSerializer;
$dataService = DataService::Configure(array(
'auth_mode' => 'oauth2',
'ClientID' => "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
'ClientSecret' => "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
'accessTokenKey' => "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX..XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
'refreshTokenKey' => 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX',
'QBORealmID' => "xxxxxxxxxxxxxxxxxxx",
'baseUrl' => "development"
));
$dataService->setLogLocation("/Users/hlu2/Desktop/newFolderForLog");
$OAuth2LoginHelper = $dataService->getOAuth2LoginHelper();
$accessToken = $OAuth2LoginHelper->refreshToken();
$error = $OAuth2LoginHelper->getLastError();
if ($error) {
echo "The Status code is: " . $error->getHttpStatusCode() . "\n";
echo "The Helper message is: " . $error->getOAuthHelperError() . "\n";
echo "The Response message is: " . $error->getResponseBody() . "\n";
return;
}
$dataService->updateOAuth2Token($accessToken);
$dataService->setLogLocation("/Users/hlu2/Desktop/newFolderForLog");
// Iterate through all Accounts, even if it takes multiple pages
$i = 1;
while (1) {
$allAccounts = $dataService->FindAll('Account', $i, 500);
$error = $dataService->getLastError();
if ($error) {
echo "The Status code is: " . $error->getHttpStatusCode() . "\n";
echo "The Helper message is: " . $error->getOAuthHelperError() . "\n";
echo "The Response message is: " . $error->getResponseBody() . "\n";
exit();
}
if (!$allAccounts || (0==count($allAccounts))) {
break;
}
foreach ($allAccounts as $oneAccount) {
echo "Account[".($i++)."]: {$oneAccount->Name}\n";
echo "\t * Id: [{$oneAccount->Id}]\n";
echo "\t * AccountType: [{$oneAccount->AccountType}]\n";
echo "\t * AccountSubType: [{$oneAccount->AccountSubType}]\n";
echo "\t * Active: [{$oneAccount->Active}]\n";
echo "\n";
}
}
/*
Example output:
Account[0]: Travel Meals
* Id: NG:42315
* AccountType: Expense
* AccountSubType:
Account[1]: COGs
* Id: NG:40450
* AccountType: Cost of Goods Sold
* AccountSubType:
...
*/
?>