1

我必须在 Django 中使用 gocardless 支付网关,如何在我的项目中使用它。

有没有什么好的 django 包,支持最新的无卡支付,

4

1 回答 1

1

您可以在 django 中使用 python gocardless 包

安装:

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 代码示例教程

于 2014-06-19T09:36:26.263 回答