megaads / ga-service
Service get report from google analytic, google ads
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 6
Forks: 0
Open Issues: 0
pkg:composer/megaads/ga-service
Requires
- php: >=5.6.4
- google/apiclient: ^2.0
- googleads/googleads-php-lib: ^38.0
- phpoffice/phpexcel: 1.8.1
This package is auto-updated.
Last update: 2025-09-27 22:33:23 UTC
README
#Installation add in file composer.json
"require": {
"megaads/ga-service": "^1.2"
}
#Get Report From Google Analytic
$KEY_FILE_LOCATION = '../config/client-secrets.json';
$name = 'Chiaki';
$filter = [
'viewId' => 'xxxxxxxx',
'from' => '2020-02-01',
'to' => '2020-02-25',
'metrics' => [
'ga:sessions', 'ga:users', 'ga:bounces'
]
];
$gaTransfer = new \GaServices\GoogleAnalytic();
$items = $gaTransfer->report($name, $KEY_FILE_LOCATION, $filter);
#Google Ads
\\ Get cost ads of account
$adsCostAccount = new \GaServices\AdsCostAccount();
$fileConfig = '../config/adsapi_php.ini';
$customerId = 'xxx-xxx-xxxx';
$filter = ['from' => '2020-01-01', 'to' => '2020-01-29']
$cost = $adsCostAccount->report($customerId, $fileConfig, $filter);