Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Edujugon committed Nov 4, 2017
2 parents e586bfa + 01ee10c commit 4e9d9b9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/Config/config.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php
return [
//Environment=> test/production
'env' => 'test',
//Google Ads
'production' => [
'developerToken' => "YOUR-DEV-TOKEN",
'clientCustomerId' => "CLIENT-CUSTOMER-ID",
'userAgent' => "YOUR-NAME",
'clientId' => "CLIENT-ID",
'clientSecret' => "CLIENT-SECRET",
'refreshToken' => "REFRESH-TOKEN"
],
'test' => [
'developerToken' => "YOUR-DEV-TOKEN",
'clientCustomerId' => "CLIENT-CUSTOMER-ID",
'userAgent' => "YOUR-NAME",
'clientId' => "CLIENT-ID",
'clientSecret' => "CLIENT-SECRET",
'refreshToken' => "REFRESH-TOKEN"
],
'oAuth2' => [
'authorizationUri' => 'https://accounts.google.com/o/oauth2/v2/auth',
'redirectUri' => 'urn:ietf:wg:oauth:2.0:oob',
'tokenCredentialUri' => 'https://www.googleapis.com/oauth2/v4/token',
'scope' => 'https://www.googleapis.com/auth/adwords'
]
];

0 comments on commit 4e9d9b9

Please sign in to comment.