Code Monkey home page Code Monkey logo

heroku-stripe-checkout's Introduction


๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ DEPRECATED ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ

Use flatmarket-server-heroku.


heroku-stripe-checkout

A self-hosted service for accepting payments with Stripe Checkout.

Usage

1. Click "Deploy to Heroku" and enter your configuration details.

Deploy to Heroku

2. Insert the Stripe Checkout markup on your site

Using Stripe's integration example. The form's action attribute should match the app you created in step 1.

<form action="https://YOUR-APP.herokuapp.com/" method="POST">
    <script
        src="https://checkout.stripe.com/checkout.js"
        class="stripe-button"
        data-key="YOUR_PUBLISHABLE_KEY"
        data-name="YOUR_NAME"
        data-description="YOUR_DESCRIPTION"
        data-amount="YOUR_AMOUNT"
    ></script>
    <input name="amount" value="YOUR_AMOUNT" type="hidden">
    <input name="description" value="YOUR_DESCRIPTION" type="hidden">
    <input name="metadata" value="YOUR_METADATA" type="hidden">
</form>

Additional input Fields

Use input fields to send information about the charge to the server.

  • amount Number

    The amount in cents. This should match the amount in the data-attribute field. Required.

  • description String

    A description of the transaction. If present, the server will include it when creating the charge.

  • metadata String

    A JavaScript Object, stringified and HTML encoded. This field allows you to dynamically add information about the charge from the frontend, e.g. { product_id: '12345' }. If present, the server will decode and include it when creating the charge.

Contributing

See CONTRIBUTING.

License

See LICENSE.

heroku-stripe-checkout's People

Contributors

christophercliff avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.