url — проблема с перенаправлением после успешного платежа через Wepay в Stack Overflow

У меня проблема с перенаправлением после успешного завершения платежа через Wepay. Это означает, как я могу перенаправить после этого URL-адреса wepay

https://stage.wepay.com/status/checkout_complete/1233455

и это мой код

try {
$data['checkout']= $wepay->request('/checkout/create', array(
'account_id' => $account_id, // ID of the account that you want the money to go to
'amount' => 1, // dollar amount you want to charge the user
'currency' => 'USD',
'short_description' => "this is a test payment", // a short description of what the payment is for
'type' => "goods", // the type of the payment - choose from GOODS SERVICE DONATION or PERSONAL
)
);
// print_r($data['checkout']);
} catch (WePayException $e) { // if the API call returns an error, get the error message for display later
$data['error'] = $e->getMessage();
}

1

Решение

Вы можете увидеть, как перенаправить пользователя после завершения оформления заказа в документации: https://developer.wepay.com/api/api-calls/checkout#create.

Вам нужно использовать hosted_checkout состав. Это работает только если вы используете WePay iFrame или размещенная страница для обработки платежей.

$data['checkout']= $wepay->request('/checkout/create', array(
'account_id' => $account_id,
'amount' => 1,
'currency' => 'USD',
'short_description' => "this is a test payment",
'type' => "goods",
'hosted_checkout' => array( // hosted checkout structure
'redirect_uri' => "http://google.com" // the url for redirect
)
)
);
1

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

Попробуйте использовать

$data['checkout']= $wepay->request('/checkout/create', array(
'account_id' => $account_id, // ID of the account that you want the money to go to
'amount' => 1, // dollar amount you want to charge the user
'currency' => 'USD',
'short_description' => "this is a test payment", // a short description of what the payment is for
'type' => "goods", // the type of the payment - choose from GOODS SERVICE DONATION or PERSONAL
'redirect_uri' => "http://google.com", // the url for redirect)
);
0

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