我必须使用上帝无卡支付网关与Django,我如何使用这个与我的项目。
有什么好的django套餐支持这种最新的无卡支付,
发布于 2014-06-19 09:36:26
您可以在django中使用python包
安装:
pip install gocardless_pro执行情况:
import gocardless_pro
import os
client = gocardless_pro.Client(
access_token=os.environ['GC_ACCESS_TOKEN'],
environment='sandbox'
)
print(client.customers.list().records)要开始学习GoCardless API,在https://developer.gocardless.com/getting-started/api/introduction/?lang=python上阅读本教程中的python代码示例。
https://stackoverflow.com/questions/24303013
复制相似问题