How do I make a PayPal encrypted buy now button with custom fields?(如何使用自定义字段制作 PayPal 加密的“立即购买按钮?)
问题描述
有没有办法让我的 PHP 代码生成一个加密的 BuyNow 按钮,该按钮还包含自定义字段并实现 IPN URL 和重定向页面?
Is there a way that my PHP code can generate an encrypted BuyNow button that also includes custom fields and also implements an IPN URL and redirect page?
推荐答案
您不必加密.只需采用自定义"变量,除其他事项外,您可能需要在其中添加价格和产品编号的哈希值,如下所示:
You don't have to encrypt. Simply take the 'custom' variable, and, among other things you might need to put in there, add a hash of the price and product number, like so:
$sCustom .= '|' . md5($sSalt . $sProduct . $sPrice);
然后,在处理 IPN 时,请确保此散列不受接收到的内容的干扰.如果是,则阻止交易.
Then, when the IPN is processed, ensure that this hash was not disturbed with what is received back. If it was, then block the transaction.
这篇关于如何使用自定义字段制作 PayPal 加密的“立即购买"按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用自定义字段制作 PayPal 加密的“立即购买
基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01