0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

chore(console): fix wrong section title in python api guide (#4526)

This commit is contained in:
Charles Zhao 2023-09-16 09:33:18 +08:00 committed by GitHub
parent f9322d02dc
commit 4c67cf3c5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,7 +31,7 @@ def get_auth_token():
</Step>
<Step title="Extract the Bearer Token from request header" subtitle="3 steps">
<Step title="Token validation" subtitle="3 steps">
### Install `python-jose` as your dependency
@ -128,7 +128,7 @@ APP = Flask(__name__)
@cross_origin(headers=["Content-Type", "Authorization"])
@requires_auth
def api:
# Your API Logic
# Your API logic
```
</Step>