文件名称:stripe:蒸气的条带库
文件大小:37KB
文件格式:ZIP
更新时间:2024-05-20 22:58:40
swift stripe stripe-api card payment
条纹
Stripe是使用的蒸气助手
使用指南
在您的Package.swift文件中,添加以下内容
. package ( url : " https://github.com/vapor-community/stripe.git " , from : " 8.0.0 " )
要在Vapor应用程序中使用Stripe,请为您的Stripe API密钥设置环境变量
export STRIPE_API_KEY="sk_123456"
现在,您可以通过Request访问StripeClient 。
struct ChargeToken : Content {
var token: String
}
func chargeCustomer ( _ req : Request) throws -> EventLoopFuture
【文件预览】:
stripe-master
----.gitignore(79B)
----Package.swift(619B)
----README.md(1KB)
----Sources()
--------Stripe()
----LICENSE(1KB)
----Tests()
--------LinuxMain.swift(117B)
--------StripeTests()