列出使用go stripe api客户端的客户

时间:2018-08-14 23:17:14

标签: go stripe-payments

我正在尝试按条纹列出所有客户,但出现此错误:

  

2018/08/14 19:14:21请求GET api.stripe.com/v1/customers   2018/08/14 19:14:21 http:代理错误:拨打tcp [:: 1]:3001:

     

getsockopt:连接被拒绝

我正在使用的代码段是:

stripe.Key = "sk_test_abc123"

params := &stripe.CustomerListParams{}
params.Filters.AddFilter("limit", "", "3")
i := customer.List(params)
for i.Next() {
    c := i.Customer()
    fmt.Printf("customer is..\n %v", c)
}

我在上面的代码段中删除了我的条带私测课程密钥。

为什么会出现此类错误?是我的笔记本电脑防火墙还是其他东西?

更新

问题似乎是因为我使用https://github.com/codegangsta/gin进行实时重载。 有办法使它起作用吗?

我只是通过以下方式运行了go项目:

go build
./proj-name

API调用正常。

0 个答案:

没有答案