Skip to content

Commit a09395c

Browse files
committed
typos
1 parent 8e98af9 commit a09395c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/oauth-flask-ngrok.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
# On a local machine, this script will run even without a public callback URI.
5858
# But in reality the user is never on the same computer with the server. To
59-
# enablre remote user access, an Ngrok public URI has be used instead of the
59+
# enable remote user access, an Ngrok public URI has to be used instead of the
6060
# local URI.
6161
# Uncomment the lines below to automatically get the public URI from
6262
# ngrok and use it instead of the local one. This public URI must also be
@@ -112,7 +112,7 @@ def auth():
112112
# This happens on the provider side.
113113

114114

115-
# OAuth Step 3 - Receive authoriation code and obtain access token.
115+
# OAuth Step 3 - Receive authorization code and obtain access token.
116116
# The user has been redirected back from the provider to your registered
117117
# callback URI. With this request comes an authorization code included in the
118118
# redirect URI. We will use that code to obtain an access token. The access
@@ -176,7 +176,7 @@ def callback():
176176

177177
# 3.
178178
# Alternatively, can use requests to exchange authorization code to access
179-
# token without usung the Webex SDK. Useful if your authorization process is
179+
# token without using the Webex SDK. Useful if your authorization process is
180180
# separate from the token usage. Save tokens somewhere for later use.
181181
# oauth_data = {
182182
# 'grant_type': "authorization_code",

0 commit comments

Comments
 (0)