如何插入验证码 HTML 标准 Paypal

发布于 2024-09-04 23:52:48 字数 193 浏览 0 评论 0原文

我有一个产品, 产品信息保存在表中, 并且有一个字段 verify_code, 我将通过 md5 创建一个字符串并插入到该字段中, 我想将此 verify_code 发送到 paypal 然后我可以检查 paypal 的响应返回 如果 verify_code == 响应 verify_code 将执行下一步操作 我如何使用 html 标准 paypal 做到这一点?

i have a product ,
product infor was save in table ,
and have a field verify_code,
i will create a string by md5 and insert to this field,
and i want send this verify_code to paypal then i can check response return from paypal
if verify_code == response verify_code will do next action
how i can do it with html standard paypal?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一城柳絮吹成雪 2024-09-11 23:52:48

您只需要在表单中添加一个名为“custom”的隐藏字段:

<input type="hidden" name="custom" value="Your_Verify_Code" />

您可以在此处检查 Paypal 使用的所有 Html 变量:
链接文本

You just need to add a hidden field named 'custom' in your form:

<input type="hidden" name="custom" value="Your_Verify_Code" />

You can check all the Html Variables that Paypal uses here:
link text

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文