Неверный код авторизации в PayPal

Я пытаюсь получить токен доступа, обновить токен и т. Д., Используя код авторизации. Я использую следующий код, но он выдает эту ошибку: invalid Auth code, Я использую учетные данные песочницы для идентификатора клиента и секретного идентификатора.

я получил $PaypalToken с устройства iOs.
Так в чем проблема?

Это оригинальный запрос PayPal:

скручиватьhttps://api.paypal.com/v1/oauth2/token‘\
-H «Content-Type: application / x-www-form-urlencoded» \
-H «Авторизация: Basic QWZV … ==» \
-d ‘grant_type = код авторизации&response_type = маркер& redirect_uri = урны: IETF: Рабочая группа по OAuth: 2,0: OOB&код = EBYhRW3ncivudQn8UopLp4A28 …

PHP Code:

$host2 = 'https://api.sandbox.paypal.com/v1/oauth2/token';
$clientId = 'XXXXXXX';
$clientSecret = 'xxxxxx';
$PaypalToken = $values->Token;
$postdata = 'grant_type=authorization_code&response_type=token&redirect_uri=urn:ietf:wg:oauth:2.0:oob&code='.$PaypalToken;
//$postdata = 'grant_type=client_credentials&response_type=token&code=wwwwwwwwwwwww';
//$postdata = 'grant_type=client_credentials';
$curl = curl_init($host2);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_USERPWD, $clientId.":".$clientSecret);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $postdata);
# curl_setopt($curl, CURLOPT_VERBOSE, TRUE);
$response = curl_exec( $curl );
// Convert the result from JSON format to a PHP array
$json_response = json_decode($response,true);
if (empty($response)) {
curl_close($curl); // close cURL handler
$returnArr['Success'] = 0;
$returnArr['Message'] = $json_response['error_description'];
echo json_encode($returnArr);exit;
} else {
$info = curl_getinfo($curl);
//echo "<pre>";print_r($info);print_r($response);
curl_close($curl);
if($info['http_code'] != 200 && $info['http_code'] != 201 ) {
$returnArr['Success'] = 0;
$returnArr['Message'] = $json_response['error_description'];
echo json_encode($returnArr);exit;
}
}
echo "<pre>";print_r($json_response);

Если я изменюсь $postdata = 'grant_type=client_credentials'; затем возвращается следующее:

массив
(
[scope] => openid https://uri.paypal.com/services/invoicing https://api.paypal.com/v1/payments/.* https://api.paypal.com/v1/vault/credit-card https://api.paypal.com/v1/vault/credit-card/.*
[access_token] => A015KRoybqmm6eJqEzxX65jtGsd-L96g20KsAugrvSkB
[token_type] => Носитель
[app_id] => APP-80W284485P519543T
[expires_in] => 28800
)

Так как получить токен Aceess, обновить токен?
Заранее спасибо.

0

Решение

Я думаю, что это не ваша сторона вопроса.

Ваш код полностью правильный.

Попросите разработчика вашего мобильного приложения настроить среду Paypal для Sandbox. Это может быть на NoNetwork.

Как я уже сталкивался с этим вопросом один раз.

Удачи. Дайте мне знать ваш ответ.

С уважением.

1

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]