/stripe-post

A minimal library for posting messages to the Stripe API.

Primary LanguageElixirMIT LicenseMIT

StripePost

A minimal library for posting messages to the Stripe API.

Installation

Add stripe_post to your list of dependencies in mix.exs:

def deps do
  [{:stripe_post, "~> 0.2.0"}]
end

Configuration

Within your opts, you will need to provide your (Stripe API Keys)[https://dashboard.stripe.com/account/apikeys]. For example,

 config :stripe_post,
   secret_key: "sk_test_abc123"
   public_key: "pk_test_abc123"

Documentation can be found at https://hexdocs.pm/stripe_post.