1

我想集成FirstData为我的支付网关。

如何从这个开始?

我正在使用 php。

谢谢

我用过的代码

<? include("ipg-util.php"); ?>
<form method="post" action="https://test.ipg-online.com/connect/gateway/processing">
<input type="hidden" name="txntype" value="sale">
<input type="hidden" name="timezone" value="GMT"/>
<input type="hidden" name="txndatetime" value="<?php echo getDateTime() ?>"/>
<input type="hidden" name="hash" value="<?php echo createHash(13.00,978) ?>"/>
<input type="hidden" name="storename" value="1909354791"/>
<input type="hidden" name="mode" value="payonly"/>
<input type="text" name="chargetotal" value="13.00"/>
<input type="hidden" name="currency" value="978"/>
<input type="submit" value="Submit">
</form>
4

2 回答 2

1

相当老的帖子,但可能对其他人有用。

First Data Payment Gateway 的文档可在此处获得。

使用您的商店名称和其他所需信息设置表单后,不要忘记在您的 Global Gateway 虚拟终端帐户中设置连接设置:

制作链接: https ://www.linkpointcentral.com

测试链接: https ://www.staging.linkpointcentral.com

为此,请转至管理 > 连接设置,然后在提交表单 URL中插入您调用支付服务的页面的 URL,以及响应 URL...

希望能帮助到你。

于 2013-07-31T17:16:28.597 回答
0

是的 Guillaume.M 你是对的。实际上在集成连接时遇到了问题,然后我联系了支持然后他们告诉我提交表单 URL 是成功付款所必需的!..

提交 URL 基本上是成功或感谢页面和失败页面 url。

在 Telecash 文档中心的手册中,他们没有强制添加 URL 设置步骤。

然后我给他们发了电子邮件,他们接受了suggtion..

谢谢

于 2013-08-01T05:29:43.073 回答