forked from clousale/amazon-sp-api-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSellingPartnerOAuth.php
79 lines (69 loc) · 2.52 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
<?php
namespace Luigel\AmazonSellingPartnerAPI;
use GuzzleHttp\Client;
use GuzzleHttp\Exception\GuzzleException;
use GuzzleHttp\RequestOptions;
class SellingPartnerOAuth
{
/**
* @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);
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'];
}
}