我正在使用一些带有 PHP 的支付网关,并在其中的文档中:
<form accept-charset="UTF-8" action="https://api.linkToPaymentGateway.com/v1/payments.html" method="POST">
<input type="hidden" name="description" value="Order id 1234 by guest" />
<input type="hidden" name="amount" value="10000" />
<!--
and some input's for the card information with type="text"
-->
<button type="submit">Purchase</button>
</form>
我的问题是:
如何保护提交的金额和描述?
我应该更改操作并使用 cURL 发送 api 吗?
谢谢。
慕运维8079593