【发布时间】:2021-05-18 12:41:57
【问题描述】:
我一直在尝试通过 Zapier 的代码在 Stripe 中创建退款,使用此答案中的 python 代码:Is is possible to create a Stripe refund action in Zapier?
当我尝试在 Zapier 中测试该步骤时,我收到“ModuleNotFoundError: no module named 'stripe'”。
我的代码如下所示:
import stripe
stripe.api_key = "myAPIkey"
stripe.Refund.create(
charge = input_data["charge"],
)
我错过了什么?
【问题讨论】: