-
Notifications
You must be signed in to change notification settings - Fork 766
/
Copy pathCreateAdWordsUserWithoutIniFile.php
executable file
·77 lines (69 loc) · 2.44 KB
/
CreateAdWordsUserWithoutIniFile.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/**
* This example demonstrates how to create an AdWordUser
* object without using an auth.ini file.
*
* PHP version 5
*
* Copyright 2014, 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.
*
* @package GoogleApiAdsAdWords
* @subpackage Auth
* @category WebServices
* @copyright 2014, Google Inc. All Rights Reserved.
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License,
* Version 2.0
*/
require_once dirname(__FILE__) . '/init.php';
// If you don't have a client ID or secret,
// see https://cloud.google.com/console/project
define('CLIENT_ID', 'INSERT_CLIENT_ID_HERE');
define('CLIENT_SECRET', 'INSERT_CLIENT_SECRET_HERE');
// If you don't have a refresh token, see GetRefreshTokenWithoutIniFile.php.
define('REFRESH_TOKEN', 'INSERT_REFRESH_TOKEN_HERE');
define('DEVELOPER_TOKEN', 'INSERT_DEVELOPER_TOKEN_HERE');
define('USER_AGENT', 'INSERT_USER_AGENT_HERE');
/**
* Run an example using the $user object.
* @param AdWordsUser $user the user that contains the client ID and secret
*/
function RunExample(AdWordsUser $user) {
$customerService = $user->GetService("CustomerService");
$customer = $customerService->get();
printf("You are logged in as customer: %s\n", $customer->customerId);
}
// Don't run the example if the file is being included.
if (__FILE__ != realpath($_SERVER['PHP_SELF'])) {
return;
}
try {
$oauth2Info = array(
'client_id' => CLIENT_ID,
'client_secret' => CLIENT_SECRET,
'refresh_token' => REFRESH_TOKEN
);
// See AdWordsUser constructor
$user = new AdWordsUser(null, DEVELOPER_TOKEN, USER_AGENT, null, null,
$oauth2Info);
$user->LogAll();
// Get the OAuth2 credential.
RunExample($user);
} catch (OAuth2Exception $e) {
ExampleUtils::CheckForOAuth2Errors($e);
} catch (ValidationException $e) {
ExampleUtils::CheckForOAuth2Errors($e);
} catch (Exception $e) {
printf("An error has occurred: %s\n", $e->getMessage());
}