-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdomain-auth-code.php
59 lines (41 loc) · 1.39 KB
/
domain-auth-code.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
<?php
// Require ODR API demo class
require_once '../Api/Odr.php';
// Configuration array, with user API Keys
$config = array(
'api_key' => '#API_KEY#',
'api_secret' => '#API_SECRET#',
);
// Either domain ID or domain name you want to get auth code for
$domainId = 'test.nl';
if (is_numeric($domainId) && $domainId <= 0) {
throw new Api_Odr_Exception('Domain ID must be a numeric and bigger than zero');
}
// Create new instance of API demo class
$demo = new Api_Odr($config);
// Login into API
$demo->login();
$loginResult = $demo->getResult();
if ($loginResult['status'] === Api_Odr::STATUS_ERROR) {
echo 'Can\'t login, reason - '. $loginResult['response'];
exit(1);
}
$demo->custom('/domain/auth-code/'. $domainId .'/', Api_Odr::METHOD_GET);
// Get result of request
$result = $demo->getResult();
if ($result['status'] !== Api_Odr::STATUS_SUCCESS) {
echo 'Following error occurred: '. (is_array($result['response']) ? $result['response']['message'] : $result['response']);
if (!empty($result['response']['data'])) {
foreach ($result['response']['data'] as $name => $error) {
echo "\r\n\t{$name}: {$error}";
}
}
exit();
}
$result = $result['response'];
if (!empty($result['auth_code'])) {
echo 'Auth code for domain is "'. $result['auth_code'] .'"';
// Do something with auth code
exit(1);
}
echo 'No auth code received';