使用 PHP 集成 Lloyds 支付卡:Cardnet 托管支付页面(连接解决方案)
来源:dev.to
时间:2024-11-10 22:46:05 473浏览 收藏
最近发现不少小伙伴都对文章很感兴趣,所以今天继续给大家介绍文章相关的知识,本文《使用 PHP 集成 Lloyds 支付卡:Cardnet 托管支付页面(连接解决方案)》主要内容涉及到等等知识点,希望能帮到你!当然如果阅读本文时存在不同想法,可以在评论中表达,但是请勿使用过激的措辞~
介绍
集成安全可靠的支付网关对于电子商务业务至关重要。劳埃德银行的 cardnet® 托管支付页面解决方案 connect 提供了一种安全的交易处理方式。客户将被重定向到劳埃德托管的页面以完成交易,然后返回您的网站。以下是您如何设置它、将其与 php 集成并为您的用户提供无缝体验的方法。
lloyds cardnet 托管支付页面的功能
lloyds cardnet 提供的托管支付页面有几个好处:
自定义:使用您的企业徽标和颜色个性化支付页面。
pci dss 合规性:cardnet 处理 pci dss 和 3d secure 合规性。
实时报告:通过 cardnet 的报告仪表板 24/7 访问客户分析。
箴言 11:1
设置您的托管支付页面
在深入了解代码之前,必须使用 lloyds cardnet 设置您的商家帐户。以下是要记住的要点:
创建商户帐户:企业必须设立一个商户来获取 cardnet 帐户。此过程可能需要 7-10 个工作日。
集成时间表:将托管支付页面连接到网站通常需要 2-4 周,具体取决于网站的复杂程度。
资金时间:资金通常在 3-5 个工作日内转账,也可付费选择更快的 2 天转账。
集成代码演练
在本指南中,我们将逐步介绍将 lloyds 托管支付页面与您的网站集成的 php 代码,确保为您的客户提供顺畅、安全的结账体验。
第 1 步:设置基本配置
首先根据您的帐户详细信息和要求配置基本字段。以下 php 代码定义了交易属性,例如商店 id、时区、交易类型等。
$storeid = "store_id"; // unique identifier for your store $timezone = "europe/london"; // timezone setting $txntype = "sale"; // transaction type (e.g., sale) $chargetotal = "13.00"; // amount to charge $currency = "826"; // iso 4217 currency code (826 for gbp) $txndatetime = gmdate("y:m:d-h:i:s"); // transaction datetime in utc $responsesuccessurl = "https://example.com/success.php"; // success redirect url $responsefailurl = "https://example.com/failure.php"; // failure redirect url $checkoutoption = "combinedpage"; // checkout option $hash_algorithm = "hmacsha256"; // hashing algorithm for secure transactions
注意:此设置可确保您的交易根据劳埃德银行的要求进行配置。
第 2 步: 创建连接字符串
接下来,根据这些值创建一个串联字符串。该字符串将被散列以维护安全性。它的构建方式如下:
// concatenate the required fields to create a single string for hashing $stringtohash = $chargetotal . "|" . $checkoutoption . "|" . $currency . "|" . $hash_algorithm . "|" . $responsefailurl . "|" . $responsesuccessurl . "|" . $storeid . "|" . $timezone . "|" . $txndatetime . "|" . $txntype; echo "concatenated string: " . $stringtohash . "<br>";
注意:连接的字符串对于创建验证交易完整性的哈希至关重要。
第 3 步:生成哈希
为了保证交易的安全性,请使用 hash_hmac() 函数和 sha-256 算法。这将使用您的共享密钥生成连接字符串的哈希版本,这对于安全交易至关重要。
// secret key for hashing (from your secure configuration) $sharedsecret = "shared_secret"; // generate the hash using sha-256 algorithm and encode it in base64 $hash = hash_hmac('sha256', $stringtohash, $sharedsecret, true); $hashoutput = base64_encode($hash); echo "generated hash: " . $hashoutput . "<br>";
注意:此哈希将与您的表单数据一起发送,以验证交易详细信息未被篡改。
第 4 步:构建 html 表单
现在,创建 html 表单,将该数据发送到 lloyds 的支付网关。该表单包括哈希值(hashextended)和其他交易详细信息。当用户提交表单时,他们将被引导至劳埃德托管的付款页面。
<form method="post" action="https://test.ipg-online.com/connect/gateway/processing"> <p><label for="storename">Store ID:</label> <input type="text" name="storename" value="<?php echo $storeId; ?>" /></p> <p><label for="timezone">Timezone:</label> <input type="text" name="timezone" value="<?php echo $timezone; ?>" /></p> <p><label for="txntype">Transaction Type:</label> <input type="text" name="txntype" value="<?php echo $txntype; ?>" /></p> <p><label for="chargetotal">Transaction Amount:</label> <input type="text" name="chargetotal" value="<?php echo $chargetotal; ?>" /></p> <p><label for="currency">Currency (ISO4217):</label> <input type="text" name="currency" value="<?php echo $currency; ?>" /></p> <p><label for="txndatetime">Transaction DateTime:</label> <input type="text" name="txndatetime" value="<?php echo $txndatetime; ?>" /></p> <p><label for="responseSuccessURL">Response Success URL:</label> <input type="text" name="responseSuccessURL" value="<?php echo $responseSuccessURL; ?>" /></p> <p><label for="responseFailURL">Response Fail URL:</label> <input type="text" name="responseFailURL" value="<?php echo $responseFailURL; ?>" /></p> <p><label for="hashExtended">Hash Extended:</label> <input type="text" name="hashExtended" value="<?php echo $hashOutput; ?>" readonly="readonly" /></p> <p><label for="hash_algorithm">Hash Algorithm:</label> <input type="text" name="hash_algorithm" value="<?php echo $hash_algorithm; ?>" readonly="readonly" /></p> <p><label for="checkoutoption">Checkout Option:</label> <input type="text" name="checkoutoption" value="<?php echo $checkoutoption; ?>" /></p> <input type="submit" value="Submit"> </form>
注意:此表单会自动填充 php 值,确保安全嵌入每笔交易的详细信息。
祝您编码愉快,并祝成功集成!
代码的 github 链接
以上就是《使用 PHP 集成 Lloyds 支付卡:Cardnet 托管支付页面(连接解决方案)》的详细内容,更多关于的资料请关注golang学习网公众号!
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
154 收藏
-
210 收藏
-
351 收藏
-
262 收藏
-
352 收藏
-
216 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习