-
Notifications
You must be signed in to change notification settings - Fork 767
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
75c3ebf
commit 4308d6b
Showing
1,150 changed files
with
84,107 additions
and
350 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
language: php | ||
|
||
php: | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- 7.1 | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
before_script: | ||
- composer install | ||
|
||
script: | ||
- vendor/phpunit/phpunit/phpunit --configuration phpunit.xml.dist --coverage-text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 88 additions & 0 deletions
88
examples/AdWords/v201710/AccountManagement/AcceptServiceLink.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<?php | ||
/** | ||
* Copyright 2017 Google Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
namespace Google\AdsApi\Examples\AdWords\v201710\AccountManagement; | ||
|
||
require __DIR__ . '/../../../../vendor/autoload.php'; | ||
|
||
use Google\AdsApi\AdWords\AdWordsServices; | ||
use Google\AdsApi\AdWords\AdWordsSession; | ||
use Google\AdsApi\AdWords\AdWordsSessionBuilder; | ||
use Google\AdsApi\AdWords\v201710\cm\Operator; | ||
use Google\AdsApi\AdWords\v201710\mcm\CustomerService; | ||
use Google\AdsApi\AdWords\v201710\mcm\ServiceLink; | ||
use Google\AdsApi\AdWords\v201710\mcm\ServiceLinkLinkStatus; | ||
use Google\AdsApi\AdWords\v201710\mcm\ServiceLinkOperation; | ||
use Google\AdsApi\AdWords\v201710\mcm\ServiceType; | ||
use Google\AdsApi\Common\OAuth2TokenBuilder; | ||
|
||
/** | ||
* This example accepts a pending invitation to link your AdWords account to a | ||
* Google Merchant Center account. | ||
*/ | ||
class AcceptServiceLink { | ||
|
||
const SERVICE_LINK_ID = 'INSERT_SERVICE_LINK_ID_HERE'; | ||
|
||
public static function runExample(AdWordsServices $adWordsServices, | ||
AdWordsSession $session, $serviceLinkId) { | ||
$customerService = $adWordsServices->get($session, CustomerService::class); | ||
|
||
// Create service link. | ||
$serviceLink = new ServiceLink(); | ||
$serviceLink->setServiceLinkId($serviceLinkId); | ||
$serviceLink->setServiceType(ServiceType::MERCHANT_CENTER); | ||
$serviceLink->setLinkStatus(ServiceLinkLinkStatus::ACTIVE); | ||
|
||
// Create a service link operation and add it to the list. | ||
$operations = []; | ||
$operation = new ServiceLinkOperation(); | ||
$operation->setOperator(Operator::SET); | ||
$operation->setOperand($serviceLink); | ||
$operations[] = $operation; | ||
|
||
// Accept service links on the server and print out some information about | ||
// accepted service links. | ||
$serviceLinks = $customerService->mutateServiceLinks($operations); | ||
foreach ($serviceLinks as $serviceLink) { | ||
printf( | ||
"Service link with service link ID %d and type '%s' updated to status" | ||
. ": %s.\n", | ||
$serviceLink->getServiceLinkId(), | ||
$serviceLink->getServiceType(), | ||
$serviceLink->getLinkStatus() | ||
); | ||
} | ||
} | ||
|
||
public static function main() { | ||
// Generate a refreshable OAuth2 credential for authentication. | ||
$oAuth2Credential = (new OAuth2TokenBuilder()) | ||
->fromFile() | ||
->build(); | ||
|
||
// Construct an API session configured from a properties file and the OAuth2 | ||
// credentials above. | ||
$session = (new AdWordsSessionBuilder()) | ||
->fromFile() | ||
->withOAuth2Credential($oAuth2Credential) | ||
->build(); | ||
self::runExample( | ||
new AdWordsServices(), $session, intval(self::SERVICE_LINK_ID)); | ||
} | ||
} | ||
|
||
AcceptServiceLink::main(); |
81 changes: 81 additions & 0 deletions
81
examples/AdWords/v201710/AccountManagement/CreateAccount.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<?php | ||
/** | ||
* Copyright 2017 Google Inc. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
namespace Google\AdsApi\Examples\AdWords\v201710\AccountManagement; | ||
|
||
require __DIR__ . '/../../../../vendor/autoload.php'; | ||
|
||
use Google\AdsApi\AdWords\AdWordsServices; | ||
use Google\AdsApi\AdWords\AdWordsSession; | ||
use Google\AdsApi\AdWords\AdWordsSessionBuilder; | ||
use Google\AdsApi\AdWords\v201710\cm\Operator; | ||
use Google\AdsApi\AdWords\v201710\mcm\ManagedCustomerService; | ||
use Google\AdsApi\AdWords\v201710\mcm\ManagedCustomer; | ||
use Google\AdsApi\AdWords\v201710\mcm\ManagedCustomerOperation; | ||
use Google\AdsApi\Common\OAuth2TokenBuilder; | ||
|
||
/** | ||
* This example creates a new account under an AdWords manager account. Note: | ||
* this example must be run using the credentials of an AdWords manager account, | ||
* and by default the new account will only be accessible via the parent AdWords | ||
* manager account. | ||
*/ | ||
class CreateAccount { | ||
|
||
public static function runExample(AdWordsServices $adWordsServices, | ||
AdWordsSession $session) { | ||
$managedCustomerService = | ||
$adWordsServices->get($session, ManagedCustomerService::class); | ||
|
||
// Create a managed customer. | ||
$customer = new ManagedCustomer(); | ||
$customer->setName('Account #' . uniqid()); | ||
$customer->setCurrencyCode('EUR'); | ||
$customer->setDateTimeZone('Europe/London'); | ||
|
||
// Create a managed customer operation and add it to the list. | ||
$operations = []; | ||
$operation = new ManagedCustomerOperation(); | ||
$operation->setOperator(Operator::ADD); | ||
$operation->setOperand($customer); | ||
$operations[] = $operation; | ||
|
||
// Create a managed customer on the server and print out some information | ||
// about it. | ||
$customer = $managedCustomerService->mutate($operations)->getValue()[0]; | ||
printf("Account with customer ID %d was created.\n", | ||
$customer->getCustomerId()); | ||
} | ||
|
||
public static function main() { | ||
// Generate a refreshable OAuth2 credential for authentication. | ||
$oAuth2Credential = (new OAuth2TokenBuilder()) | ||
->fromFile() | ||
->build(); | ||
|
||
// Construct an API session configured from a properties file and the OAuth2 | ||
// credentials above. | ||
// You can use withClientCustomerId() of AdWordsSessionBuilder to specify | ||
// your manager account ID under which you want to create an account. | ||
$session = (new AdWordsSessionBuilder()) | ||
->fromFile() | ||
->withOAuth2Credential($oAuth2Credential) | ||
->build(); | ||
self::runExample(new AdWordsServices(), $session); | ||
} | ||
} | ||
|
||
CreateAccount::main(); |
Oops, something went wrong.