php集成Stripe支付插件,Stripe支付对接

一、由于文档丢失原因,我就直接上代码了。

这个Stripe支付可以支持多个币种,我下面就采用"HDK"来参照支付先上一个支付效果图

提示:先上代码,在说明博主自己理解的流程。

一、前端代码如下:请求的是ashx后台一般处理程序(C# asp.net)

myStripe.pay({

title: 'Soonnet Web Site',

currency: 'HKD',

amount: * 100,//这里为什么要 * 100 呢 因为这个钱默认他们打了1折扣,具体忘记为什么了,好像只有港币这样。

callback: function (p) {

var dt = {

TokenID: this.tokenId, //这个是必须的,下面的四个参数根据自身业务确认

//Amount:6300,

Email: this.email,

"MasterGroupType": getQueryString("GT"),

"Mmail": getQueryString("E"),

"RunId": getQueryString("R")

}

$.ajax({

url: "/ReasontoRun/Running.ashx?method=paypal&PayType=1",//支付类型

method: "post",

data: dt,

async: false,

你可能感兴趣的:(php集成Stripe支付插件)