编程语言
首页 > 编程语言> > javascript – Braintree如何实现“透明重定向”?

javascript – Braintree如何实现“透明重定向”?

作者:互联网

在Braintree的How Transparent Redirect Works第2步中,他们说:

The payment gateway then stores the data and redirects the customer back to the your site. Because the payment gateway redirects the customer back to your site without displaying any content, the customer won’t notice that he or she ever left your site.

这个透明重定向究竟是如何实现的?

> HTML Meta刷新?
> Javascript加载网址代码段?
> HTTP 3xx重定向?

解决方法:

我是Braintree的开发人员.

我们目前使用HTTP重定向实现此目的.商家通过将表单操作设置为Braintree URL来配置要发布给我们的表单.

当我们收到表单帖子时,我们会将用户重定向回商家的网站而不显示任何内容.我们通过带有Location标头的HTTP 3xx响应来完成此操作.

除非用户正在查看他们的浏览器状态栏,否则他们将无法看到他们离开商家的网站.这使得商家可以控制结账过程的用户体验,而无需通过其服务器传递信用卡数据.

您还可以在我们的网站上阅读overview of our Transparent Redirect API.

标签:javascript,http-headers,meta-tags,payment-gateway,braintree
来源: https://codeday.me/bug/20190613/1231494.html