Stripe支付-iOS-Swift

Stripe官网:https://stripe.com/
Stripe文档:https://stripe.com/docs
Stripe接入iOS-SDK:https://stripe.dev/stripe-ios/docs/
进入github:https://github.com/stripe/stripe-ios

image.png

打开官方提供的代码:


image.png

配置变量 :

  1. var stripePublishableKey = ""
  2. var backenBaseURL = ""
  3. var appleMerchantID = ""
image.png

1.1 进入支付监控中心:https://dashboard.stripe.com/
1.2 点击 - 开发者
1.3 点击 - API密钥
1.4 复制 - 可发布的密钥->令牌:

image.png

1.5 赋值 - 变量: var stripePublishableKey = "pk_test_xxx...xx"

2.1 进入官方提供的服务器:https://id.heroku.com/login
2.2 选择服务器编程语言(Node.js):https://devcenter.heroku.com/
2.3 进入编码(Node.js)文档:https://devcenter.heroku.com/articles/getting-started-with-nodejs
2.4 开始配置本地环境:https://devcenter.heroku.com/articles/getting-started-with-nodejs#set-up
2.5 克隆提示下载的服务器代码(Node.js)
2.6 进入克隆下来的文件夹中
2.7 确定本地安装(Node.js)环境 (官网有安装教程)
2.8 编辑克隆下来的服务器代码(index.js (Node.js))

image.png

2.11. 执行命令 (npm install)
2.12 拷贝package.json 到 提示报错的目录下(如果不报错忽略)
2.13 执行命令 (npm install express stripe body-parser)
2.14 确定本地电脑的heroku环境安装完毕
2.15 登陆heroku(heroku login), 会打开浏览器,点击浏览器的登陆按钮
2.16 创建App(执行命令):heroku create
2.17 查看创建的应用
image.png

image.png

2.18 使用git 命令部署到服务器(git add . -> git commit -m "demo" -> git push heroku master)
2.19 赋值 - 变量 var backenBaseURL = "https://[使用heroku create生成的名称].heroku.com/"

3.1 配置客户端所需要的参数


image.png

image.png

3.2 参数customer_id


image.png

image.png

4.1 配置参数:appleMerchantID
项目名称->Signing & Capabilities -> + Capability -> 搜索 Apple Pay -> 双击加入 ->新建appleMerchantID (一般命名规则:merchant.[Bundle Identifier])


image.png

4.2 赋值 - 变量 var appleMerchantID = "merchant.[Bundle Identifier]"

5.1 运行iOS-App


image.png

5.2 开始Stripe 支付 (ship to、Pay from 一定要第几进入填写和选择,不然不能支付)


image.png

6.1 完结!!!!

总结:折腾了俩天Stripe支付,其实很简单,支付过程:创建自定义Key(server端创建)->创建自定义支付意图(server端创建) -> 确认支付结果(iOS-App操作)。

你可能感兴趣的:(Stripe支付-iOS-Swift)