Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/typeclasses/stripe
Haskell libraries for working with the Stripe API
https://github.com/typeclasses/stripe
haskell haskell-library scotty stripe stripe-api wreq
Last synced: 3 months ago
JSON representation
Haskell libraries for working with the Stripe API
- Host: GitHub
- URL: https://github.com/typeclasses/stripe
- Owner: typeclasses
- Created: 2018-12-20T04:19:52.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-06-27T00:08:15.000Z (over 1 year ago)
- Last Synced: 2024-04-27T00:41:59.386Z (8 months ago)
- Topics: haskell, haskell-library, scotty, stripe, stripe-api, wreq
- Language: Haskell
- Size: 92.8 KB
- Stars: 19
- Watchers: 4
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
To build and test with all supported compiler versions:
nix build .#testConfigurations.all --no-link
Packages in this repository:
- [stripe-concepts] is a minimal package that just defines a common set of types
for working with the Stripe API.- [stripe-signature] is for parsing and verifying the `Stripe-Signature` HTTP
header that Stripe includes when it sends an event to your webhook. You should
use this to verify the authenticity of the request to ensure that you are not
acting upon forged events originating from some source other than Stripe.- [stripe-wreq] helps you make requests to the Stripe API in conjunction with
the [wreq] package. This is a minimal library that makes no attempt obscure
either its underpinnings in Wreq or any of the details of the Stripe API.
Responses are returned as [aeson] values.[aeson]: https://hackage.haskell.org/package/aeson
[stripe-concepts]: https://hackage.haskell.org/package/stripe-concepts
[stripe-signature]: https://hackage.haskell.org/package/stripe-signature
[stripe-wreq]: https://hackage.haskell.org/package/stripe-wreq
[wreq]: https://hackage.haskell.org/package/wreq