我想用 realex 提出贝宝付款的测试请求。
请求看起来像:
curl -X POST \
https://test.realexpayments.com/epage-remote.cgi \
-H 'Cache-Control: no-cache' \
-H 'Content-Type: application/xml' \
-H 'Postman-Token: b83626b9-9472-25d6-cb36-6143a480bf69' \
-d '<?xml version="1.0" encoding="UTF-8"?><request type="payment-set" timestamp="20180222134621"><merchantid>realexsandbox</merchantid><account>internet</account><orderid>IgGjoyQSRXqRyIvG30S5zQ</orderid><amount currency="EUR">1001</amount><autosettle flag="1"/><sha1hash>1524dcf16adca3af772ff4d6a035dd3789d5a4e9</sha1hash><paymentmethod>paypal</paymentmethod><paymentmethoddetails><ReturnURL>https://www.example.com/success</ReturnURL><CancelURL>https://www.example.com/failure</CancelURL></paymentmethoddetails><sha1hash>2d630f0d401ee62c711db6ab37b79f2ad43f201e</sha1hash></request>'
正文看起来不错,可能端点https://test.realexpayments.com/epage-remote.cgi不是正确的,因为我总是得到响应:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<response timestamp="20180223104630">
<result>503</result>
<message>No request type specified</message>
</response>
有人可以帮我吗?