如何用golang接受付款?

时间:2017-03-18 17:29:34

标签: go

我正在使用Golang为我的应用程序制作后端应用程序适用于Android,ios和Windows,我正在尝试寻找接受付款的方式。
我可以使用示例包吗?

1 个答案:

答案 0 :(得分:6)

与上面提到的一些评论一样,我还建议选择首选支付系统,然后使用与该支付系统的REST API接口的Go客户端库。

以下是一些付款库:https://golanglibs.com/top?q=payment 其中大部分包括自述文件中的示例文件或示例。许多Go软件包也使用GoDoc作为文档。

列表中最受欢迎的是PayPal-Go-SDK,它是PayPal REST API的Go客户端。 它包含一个示例文件:https://github.com/logpacker/PayPal-Go-SDK/blob/master/example_test.go

它有GoDoc文档:https://godoc.org/github.com/logpacker/PayPal-Go-SDK

如果您更喜欢使用Stripe等其他付款服务,则他们会有类似的客户:https://github.com/stripe/stripe-go

他们还有一些使用示例:https://github.com/stripe/stripe-go#usage

他们还有文档:https://godoc.org/github.com/stripe/stripe-go