Skip to content

Latest commit

 

History

History

stripe

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Create Stripe customers and charge them on Firestore write

This sample shows you how to create Stripe customers when your users sign up, securely collect and store their payment details, and charge them when a new document is written to your Firestore.

Features

  • Create a customer object in Stripe when a new user signs up. (view code).
  • Securely collect a customers card details with Stripe Elements and set them up for future usage. (view code).
  • Create a payment on the customer's card when a new document is written to the payments collection. (view code).
    • NOTE: Note that this example creates the payment document on the client with an amount and currency inputted by the user. In a real application, you need to validate price details in your function, e.g. based on product information stored in your Firestore.
  • Handle 3D Secure authentication if required by the card issuer. Read more about 3D Secure and SCA here. (view code)

Further reading:

Demo

Firebase Stripe demo gif

Deploy and test

  • Create a Firebase Project using the Firebase Developer Console
  • Enable billing on your project by switching to the Blaze plan. See pricing for more details. This is required to be able to do requests to non-Google services.
  • Enable Google & Email sign-in in your authentication provider settings.
  • Install Firebase CLI Tools if you have not already and log in with firebase login.
  • Configure this sample to use your project using firebase use --add and select your project.
  • Install dependencies locally by running: cd functions; npm install; cd -
  • Add your Stripe API Secret Key to firebase config:
    firebase functions:config:set stripe.secret=<YOUR STRIPE SECRET KEY>
  • Set your Stripe publishable key for the STRIPE_PUBLISHABLE_KEY const in /public/javascript/app.js
  • Deploy your project using firebase deploy
  • Test your Stripe integration by viewing your deployed site firebase open hosting:site

Run the client locally

Since this project uses Firebase Auth triggers, the functions need to be deployed. However, when making changes to your client application in the /public folder, you can serve it locally to quickly preview changes.

firebase deploy --only functions ## only needs to be run when you make changes to your functions

firebase serve --only hosting

Accepting live payments

Once you’re ready to go live, you will need to exchange your test keys for your live keys. See the Stripe docs for further details.

  • Update your Stripe secret config:
    firebase functions:config:set stripe.secret=<YOUR STRIPE LIVE SECRET KEY>
  • Set your live publishable key for the STRIPE_PUBLISHABLE_KEY const in /public/javascript/app.js.
  • Redeploy both functions and hosting for the changes to take effect firebase deploy.