go.stripe icon indicating copy to clipboard operation
go.stripe copied to clipboard

a simple Credit Card processing library for Go using the Stripe API

Results 20 go.stripe issues
Sort by recently updated
recently updated
newest added

Hi, I think i spotted an error while using the webhooks. It returns an object which contains "lines". But it contains json field called "data" which is not present in...

I'd like the possibility of using this library in environments with Client objects outside of the default set, which this change allows. ``` go client := &PlanClient{ Client{key: "non-default"} }...

ready to use on GAE platform.

Added the new `receipt_email` field to the Charge object. It allows the API user to specify an email address to send a receipt to in place of the Customer's stored...

I'd like to be able to use the cards API. This change adds stripe.Cards.List, stripe.Cards.Add, and stripe.Cards.Delete.

I receive the following error creating a charge using stripe.Charges.Create() : Post https://**_SECRET_KEY**[email protected]/v1/charges: http.DefaultTransport and http.DefaultClient are not available in App Engine. See https://developers.google.com/appengine/docs/go/urlfetch/overview

When cancelling a subscription need to enable the `at_parameter_end` flag: > If you set the at_parameter_end parameter to true, the subscription will remain active until the end of the period,...

enhancement

Implement an http.HandlerFunc so that a developer can easily handle Stripe Events. i'm thinking something like this ``` go type EventCallback func(Event); func HandleEvent(callback EventCallback) { return func(req *http.Request, resp...

enhancement

Need unit tests for invoice items

Need unit tests for invoices