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:
parent
f9322d02dc
commit
4c67cf3c5c
1 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ def get_auth_token():
|
||||||
|
|
||||||
</Step>
|
</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
|
### Install `python-jose` as your dependency
|
||||||
|
|
||||||
|
@ -128,7 +128,7 @@ APP = Flask(__name__)
|
||||||
@cross_origin(headers=["Content-Type", "Authorization"])
|
@cross_origin(headers=["Content-Type", "Authorization"])
|
||||||
@requires_auth
|
@requires_auth
|
||||||
def api:
|
def api:
|
||||||
# Your API Logic
|
# Your API logic
|
||||||
```
|
```
|
||||||
|
|
||||||
</Step>
|
</Step>
|
||||||
|
|
Loading…
Reference in a new issue