我有问题。我应该做一个自定义网关。我知道基础知识。我看了文档。要传输的URL数据(例如用户名,事务量)。我的问题是如何将用户重定向到银行的付款页面?什么是命令以及在哪里给出确切的URL?然后返回的数据必须处理什么方法? cURL还是其他什么?我找不到任何真正的解决方案。
答案 0 :(得分:1)
不同的网关有不同的需求,如果您的网关使用POST,您可以使用它来发布数据,并获得响应..它比cURL更好。
$response = wp_remote_post( $environment_url, array(
'method' => 'POST',
'body' => http_build_query( $payload ),
'timeout' => 90,
'sslverify' => false,
) );
// Retrieve the body's response if no errors found
$response_body = wp_remote_retrieve_body( $response );
$response_headers = wp_remote_retrieve_headers( $response );
// Payload would look something like this.
$payload = array(
"amount" => $order.get_total(),
"reference" => $order->get_order_number(),
"orderid" => $order->id,
"return_url" => $this->get_return_url($order) //return to thank you page.
);
//use this if you need to redirect the user to the payment page of the bank.
$querystring = http_build_query( $payload );
return array(
'result' => 'success',
'redirect' => $environment_url . '?' . $querystring,
);