1

我无法将 Beanstream 集成到我的 wbe 页面。

我正在尝试提交包含金额、Mer id、卡详细信息、操作 = https://www.beanstream.com/scripts/process_transaction.asp的表格。它将进入 beanstream 页面并且不会返回。

浏览器在此处停止的页面:https ://www.beanstream.com/scripts/process_transaction.asp?rbCCType=Visa&trnCardNum ......

任何人都可以建议如何进行。我从最近几天开始尝试,但没有成功。

提前致谢。

4

1 回答 1

1

如果您尝试提交信用卡购买交易,这里是一个示例

<form action="https://www.beanstream.com/scripts/process_transaction.asp" method="post">
    <input type="text" name="merchant_id" value="YOUR-MERCHANT-ID" />
    <input type="text" name="trnAmount" value="5.00" />
    <input type="text" name="paymentMethod" value="CC" />
    <input type="text" name="trnCardOwner" value="John Doe" />
    <input type="text" name="trnCardType" value="VI" />
    <input type="text" name="trnCardNumber" value="4030000010001234" />
    <input type="text" name="trnExpMonth" value="01" />
    <input type="text" name="trnExpYear" value="17" />
    <input type="text" name="trnCardCvd" value="123" />

    <input type="submit" id="submitButton" value="Submit Payment">

我已经包含了一个测试卡号,所以只需更新 Mercer_id 并尝试一下。或者您可以将这些字段发布到 Beanstream 的脚本后面的代码中。有关更多信息,请参阅http://developer.beanstream.com/documentation/classic-apis/http://support.beanstream.com/

于 2013-12-04T23:52:55.743 回答