forked from clousale/amazon-sp-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSellingPartnerOAuth.php
124 lines (107 loc) · 4.45 KB
/
SellingPartnerOAuth.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?php
namespace SellerLegend\AmazonSellingPartnerAPI;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
use GuzzleHttp\RequestOptions;
use InvalidArgumentException;
class SellingPartnerOAuth {
public const SCOPE_MIGRATION = 'sellingpartnerapi::migration';
public const SCOPE_NOTIFICATIONS = 'sellingpartnerapi::notifications';
/**
* @param $refreshToken
* @param $clientId
* @param $clientSecret
*
* @throws GuzzleException
*/
public static function getAccessTokenFromRefreshToken($refreshToken, $clientId, $clientSecret): ?string {
$client = new Client();
$params = [
'grant_type' => 'refresh_token',
'refresh_token' => $refreshToken,
'client_id' => $clientId,
'client_secret' => $clientSecret,
];
$options = array_merge([
RequestOptions::HEADERS => ['Accept' => 'application/json'],
RequestOptions::HTTP_ERRORS => false,
'curl' => [
CURLOPT_SSLVERSION => CURL_SSLVERSION_TLSv1_2,
],
], $params ? [RequestOptions::FORM_PARAMS => $params] : []);
$response = $client->request('POST', 'https://api.amazon.com/auth/o2/token', $options);
$body = $response->getBody()->getContents();
$bodyAsJson = json_decode($body, true);
if (isset($bodyAsJson['error_description'])) {
throw new SellingPartnerOAuthException($bodyAsJson['error_description'], $bodyAsJson['error']);
}
return $bodyAsJson['access_token'];
}
/**
* @throws GuzzleException
* @throws SellingPartnerOAuthException
*/
public static function getRefreshTokenFromLwaAuthorizationCode(
string $lwaAuthorizationCode,
string $clientId,
string $clientSecret,
string $redirectUri
): ?string {
$client = new Client();
$params = [
'grant_type' => 'authorization_code',
'client_id' => $clientId,
'client_secret' => $clientSecret,
'code' => $lwaAuthorizationCode,
'redirect_uri' => $redirectUri,
];
$options = array_merge([
RequestOptions::HEADERS => ['Accept' => 'application/json'],
RequestOptions::HTTP_ERRORS => false,
'curl' => [
CURLOPT_SSLVERSION => CURL_SSLVERSION_TLSv1_2,
],
], $params ? [RequestOptions::FORM_PARAMS => $params] : []);
$response = $client->request('POST', 'https://api.amazon.com/auth/o2/token', $options);
$body = $response->getBody()->getContents();
$bodyAsJson = json_decode($body, true);
if (isset($bodyAsJson['error_description'])) {
throw new SellingPartnerOAuthException($bodyAsJson['error_description'], $bodyAsJson['error']);
}
return $bodyAsJson['refresh_token'];
}
/**
* @param string $scope
* @param string $clientId
* @param string $clientSecret
*
* @throws GuzzleException
*/
public static function getAccessTokenByScope(string $scope, string $clientId, string $clientSecret): ?string {
// verify the required parameter 'scope' is set
if (!in_array($scope, [self::SCOPE_MIGRATION, self::SCOPE_NOTIFICATIONS])) {
throw new InvalidArgumentException('Invalid required parameter $scope when calling getAccessTokenByScope');
}
$client = new Client();
$params = [
'grant_type' => 'client_credentials',
'client_id' => $clientId,
'client_secret' => $clientSecret,
'scope' => $scope
];
$options = array_merge([
RequestOptions::HEADERS => ['Accept' => 'application/json'],
RequestOptions::HTTP_ERRORS => false,
'curl' => [
CURLOPT_SSLVERSION => CURL_SSLVERSION_TLSv1_2,
],
], $params ? [RequestOptions::FORM_PARAMS => $params] : []);
$response = $client->request('POST', 'https://api.amazon.com/auth/o2/token', $options);
$body = $response->getBody()->getContents();
$bodyAsJson = json_decode($body, true);
if (isset($bodyAsJson['error_description'])) {
throw new SellingPartnerOAuthException($bodyAsJson['error_description'], $bodyAsJson['error']);
}
return $bodyAsJson['access_token'];
}
}