Go - 使用有效负载重定向到特定的 url

我正在尝试在我的应用程序上实施付款方式,我需要帮助。


要显示支付页面,我需要POST使用支付负载向他们的 url 执行请求。通常他们会用一个 html 响应来响应,然后我需要将它渲染到屏幕上。但是,我得到的是一个错误,说会话无效。


我的问题:是否可以使用POST请求有效负载重定向到另一个 url?


POST http://payment.api.net/merchant/init?corpid=CN000001

<order>

    <corp>NN01</corp>

    <amount>20.0</amount>

    <currency>USD</currency>

    <ordernumber>10010111</ordernumber>

    <redirect>http://mycallback.api.net/store/payment/callback</redirect>

    <randomstring>NnwLRINzhOgvmvyunzZIrUtCgvmvy</randomstring>

    <hash>4792e72f5e1860b220420ad3f22f005c9d2fce83f3a138336869780153145700</hash>

</order>


沧海一幻觉
浏览 161回答 1
1回答

四季花海

尝试使用此代码..<html>&nbsp; &nbsp; <body>&nbsp; &nbsp; <form action="http://payment.api.net/merchant/init?corpid=CN000001" method="post" enctype='text/plain'>&nbsp; &nbsp; &nbsp; &nbsp; <input type="hidden" name="order" value='<order><corp>NN01</corp><amount>20.0</amount><currency>USD</currency><ordernumber>10010111</ordernumber><redirect>http://mycallback.api.net/store/payment/callback</redirect><randomstring>NnwLRINzhOgvmvyunzZIrUtCgvmvy</randomstring><hash>4792e72f5e1860b220420ad3f22f005c9d2fce83f3a138336869780153145700</hash></order>'>&nbsp; &nbsp; &nbsp; &nbsp; <button type="submit">Submit</button>&nbsp; &nbsp; </form>&nbsp; &nbsp; </body></html>可以解决你的问题。。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go