Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/megaads-vn/ga-api-service

Service get report from google analytic and google ads
https://github.com/megaads-vn/ga-api-service

Last synced: 10 days ago
JSON representation

Service get report from google analytic and google ads

Awesome Lists containing this project

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);
```