You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Use _Stripe Checkout_ if you want to get up and running fast. It provides a number of powerful features out-of-the-box, supports multiple languages, and can even be used for [recurring payments](https://stripe.com/docs/billing/subscriptions/fixed-price). Most importantly, Checkout manages the entire payment process for you, so you can begin accepting payments without even having to add a single form!
12
12
* Use the Payment Intents API (along with Elements) if you want to customize the payment experience for your end users.
13
13
14
-
######Workflow
14
+
## Workflow
15
15
16
16
1. Create a project structure to hold all your project resources
17
17
2. Create a virtual environment and install `flask`
@@ -23,7 +23,9 @@ Stripe currently has 3 payment strategies for accepting one-time payments:
23
23
8. Redirect the user appropriately when they have checked out
24
24
9. Confirm payment with Stripe Webhooks
25
25
26
-
#### Initial SetUp
26
+
_This project's code can be located in [this GitHub repository](https://github.com/GitauHarrison/integrating-stripe-payment-in-flask)._
27
+
28
+
## Initial SetUp
27
29
28
30
You need to create your project directory and move into it. It is important that you activate your [virtual environment](https://docs.python.org/3/tutorial/venv.html) before installing `Flask`.
29
31
@@ -39,7 +41,7 @@ $ python3 -m venv tutorial-env
39
41
40
42
If you wish to use a virtualenvironment wrapper to create your virtual environment, learn how to [configure Python Environment with Virtualenvwrapper here](/virtualenvwrapper_setup.md).
41
43
42
-
Install `flask`
44
+
Install `flask`:
43
45
```python
44
46
$ pip3 install flask
45
47
```
@@ -49,23 +51,13 @@ $ touch requirements.txt # this will create an empyty file
49
51
$ pip3 freeze > requirements.txt
50
52
```
51
53
52
-
######Simple Flask App Structure
54
+
## Simple Flask App Structure
53
55
54
-
So far, we already have our project folder created and it holds the `requirements.txt` file. We will add the following empty files to complete the structure for our simple app.
56
+
So far, we already have our project folder created and it holds the `requirements.txt` file. Add the remaining empty files to complete the structure for our simple app.
(stripe-project)$ touch app/__init__.py # This is where the application is initialized
61
-
(stripe-project)$ touch app/routes.py # All our views will be here
62
-
(stripe-project)$ touch app.py # this allows for our app to run
63
-
(stripe-project)$ touch config # all our configuration variables will be stored here
64
-
(stripe-project)$ touch .flaskenv # stores all your environment variables
65
-
(stripe-project)$ mkdir app/templates # create a templates subfolder to hold all our template files
66
-
(stripe-project)$ touch app/templates/base.html # base structure of the app will be here
67
-
(stripe-project)$ touch app/templates/index.html # this is the primary template
68
-
```
60
+
69
61
Add the following contents to the appropriate files:
70
62
71
63
`app/__init__.py`
@@ -76,6 +68,7 @@ app = Flask(__name__)
76
68
77
69
from app import routes
78
70
```
71
+
This creates an instance of the application and registers the `routes` module. To test that the app is working, we will display the classic 'Hello, world' message as seen below.
79
72
80
73
`app/routes.py`
81
74
```python
@@ -86,28 +79,32 @@ from app import app
86
79
defindex():
87
80
return"Hello, world!"
88
81
```
82
+
Before we can run our app, we will need to create an entry point to our flask application. This will be done in the file called `app.py`.
89
83
90
84
`app.py`
91
85
```python
92
86
from app import app
93
87
```
94
-
###### Fire Up Your Server
88
+
##Start Your Flask Server
95
89
96
-
**Method #1:**
90
+
### Method #1
97
91
98
-
Our app is set up and we need to fire our server to display _Hello, world!_. Let us set up `FLASK_APP` environment variable to import our flask app:
92
+
Our app is set up and we need to fire up our server to display _Hello, world!_. Let us set up `FLASK_APP` environment variable in the terminal to import our flask app:
99
93
100
94
```python
101
95
(stripe-project)$ export FLASK_APP=app.py
102
96
(stripe-project)$ flask run
103
97
104
98
# This is what you will see:
99
+
105
100
* Serving Flask app "app"
106
101
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
107
-
# click on the link (or copy this http address and paste it in your browser URL bar). You should see Hello, World!
102
+
103
+
# Click on the link (or copy this http address and paste it
104
+
# in your browser URL bar). You should see Hello, World!
108
105
```
109
106
110
-
**Method #2:**
107
+
### Method #2
111
108
112
109
Since environment variables such as the one created above (I mean `FLASK_APP`) aren't remembered across terminal sessions, you may find it tedious to always have to set the `FLASK_APP` environment variable when you open a new terminal windor.
113
110
@@ -125,26 +122,32 @@ FLASK_APP=app.py
125
122
```
126
123
Now, all you need to do as run `flask run` and you will be able to see the output in your browser.
127
124
128
-
####Adding Stripe
125
+
## Adding Stripe
129
126
130
-
Start by installing `stripe`:
127
+
Start by installing `stripe` in your virtual environment:
131
128
132
129
```python
133
130
(stripe-project)$ pip3 install stripe
134
131
```
135
132
133
+
### Register For A Stripe Account
134
+
136
135
[Register](https://dashboard.stripe.com/register) for a stripe account. Once you are in the dashboard, navigate to the _Developers_ menu on the left sidebar. Click on it to reveal _API Keys_.
137
136
138
137

139
138
140
139
Click on _API Keys_.
141
140
141
+
### Stripe API Keys
142
+
142
143
Each Stripe account has four [API keys](https://stripe.com/docs/keys): two keys for testing and two for production. Each pair has a "secret key" and a "publishable key". Do not reveal the secret key to anyone; the publishable key will be embedded in the JavaScript on the page that anyone can see.
143
144
144
145

145
146
146
147
Currently the toggle for "Viewing test data" in the left sidebar indicates that we're using the test keys now. That's what we want.
147
148
149
+
### Configure Stripe Keys in the Application
150
+
148
151
Now that we know where to find our API keys, we need to store them in system-wide variables within the top-level `config.py` file.
149
152
150
153
`config.py`
@@ -192,7 +195,7 @@ Finally, you will need to add an account name. Click on the top-left sidebar whe
192
195
193
196

194
197
195
-
####Create a Product
198
+
### Create a Product
196
199
197
200
We need to create a product to sell. Click _Products_ on the left sidebar in your dashboard and _+Add Product_
198
201
@@ -202,19 +205,26 @@ Add a product name, enter your price and select _One time_, then click on _Save
202
205
203
206

204
207
205
-
####Get Publishable Key
208
+
### Get Publishable Key
206
209
207
210
We will use _Javascript_. We will all a static folder which will hold our `.js` files.
208
211
209
212
```python
210
-
(stripe-project)$ mkdir app/static && mkdir app/static/js # this will create a js sub-folder in static
As a test, add the following contents to the `main.js` file:
220
+
213
221
`app/static/js/main.js`
214
222
```js
215
223
console.log("Sanity check!") // this is just a printout
216
224
```
217
225
226
+
## Working with Templates
227
+
218
228
In your `app/routes.py`, modify the file to now render your `index.html` file. We will use the `index.html` file to display a simple _Purchase_ button:
219
229
220
230
`app/routes.py`
@@ -276,17 +286,20 @@ We have linked our `main.js` file with the base template. Your actual content wi
276
286
</section>
277
287
{% endblock %}
278
288
```
289
+
### Run the Application
279
290
280
291
Run the development server:
281
292
282
293
```python
283
294
(stripe-project)$ flask run
284
295
```
285
296
286
-
Navigate to _http://localhost:5000_, and open up the JavaScript console (ctrl +shift + I). You should see the _sanity check_:
297
+
Navigate to http://localhost:5000, and open up the JavaScript console (ctrl +shift + I). You should see the _sanity check_:
287
298
288
299

289
300
301
+
## Handling AJAX
302
+
290
303
Let us add a new route to handle the [AJAX](https://www.w3schools.com/js/js_ajax_intro.asp) request:
291
304
292
305
`app/routes.py`
@@ -300,7 +313,7 @@ def get_publishable_key():
300
313
return jsonify(stripe_config)
301
314
```
302
315
303
-
#####Create an AJAX request
316
+
### Create an AJAX request
304
317
305
318
We will use the [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) to make an AJAX request to the new route `/config` endpoint.
306
319
@@ -322,7 +335,7 @@ A reposnse from a `fetch` request is a [ReadableStream](https://developer.mozill
322
335
323
336
Now, after the page load, a call will be made to `/config`, which will respond with the Stripe publishable key. We'll then use this key to create a new instance of Stripe.js.
324
337
325
-
####Create Checkout Session
338
+
### Create Checkout Session
326
339
327
340
We need to attach an event handler to the button's click event which will send another AJAX request to the server to generate a new Checkout session ID.
328
341
@@ -411,6 +424,8 @@ Navigate to http://localhost:5000. Click the button and you should be redirected
411
424
412
425
_My form is slightly modified and branded to have the orange-ish color. You can achive this through [Brand Setting](https://dashboard.stripe.com/settings/branding)._
413
426
427
+
### Test the Checkout Session
428
+
414
429
Stripe provides us with several [test card numbers](https://stripe.com/docs/testing#cards). Pick one, depending on your region and fill in the form:
415
430
416
431
* Provide a valid email address
@@ -422,7 +437,7 @@ Stripe provides us with several [test card numbers](https://stripe.com/docs/test
422
437
423
438
If all goes well, the payment should be processed. Nothing will happen after a successful process because we have not set a `/success` redirect yet. So, below that is what we will do.
424
439
425
-
####Redirecting User Appropriately
440
+
### Redirecting A User Appropriately
426
441
427
442
We will now add routes for successful payment processing or any cancellation.
428
443
@@ -480,7 +495,7 @@ You can test out `/cancel` by clicking on the back arrow in the Stripe payment f
Our app works well at this point, but we still can't programmatically confirm payments and perhaps run some code if a payment was successful. We already redirected the user to the success page after they check out, but we can't rely on that page alone since payment confirmation happens asynchronously.
486
501
@@ -494,7 +509,7 @@ We need to do three things in order to use webhooks:
494
509
2. Test the endpoint using the [Stripe CLI](https://stripe.com/docs/stripe-cli)
495
510
3. Register the endpoint with Stripe
496
511
497
-
######Endpoint
512
+
### Endpoint
498
513
499
514
Whenever a payment goes through successfully, we will print a message.
500
515
@@ -531,7 +546,7 @@ def stripe_webhook():
531
546
532
547
`stripe_webhook` function now serves our webhook endpoint. Here, we are only looking for `checkout.session.completed` events which are called whenever a checkout is successful. You can use the same pattern for other [Stripe Events](https://stripe.com/docs/api/events).
533
548
534
-
######Test Your Webhook
549
+
### Test Your Webhook
535
550
536
551
We will use the Stripe CLI to test our webhook. First, install the Stripe CLI:
537
552
@@ -593,7 +608,7 @@ Stripe will now forward events to our endpoint. Once again, test for a successfu
593
608
594
609
At this point, you can stop the `stripe listen --forward-to localhost:5000/webhook` process.
595
610
596
-
##### Register Your Endpoint
611
+
### Register Your Endpoint
597
612
598
613
After deploying your app, you can register your endpoint in the stripe dashboard under _Developer > Webhooks_. Click on the button _Add Enpoint_.
0 commit comments