Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a24ee04

Browse files
authored
Fix token_verifier import in Examples
fixes auth0#480
1 parent a4783c2 commit a24ee04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

EXAMPLES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ For symmetric algorithms like HS256, use the `SymmetricSignatureVerifier` class,
3232
The following example demonstrates the verification of an ID token signed with the RS256 signing algorithm:
3333

3434
```python
35-
from auth0.authentication import TokenVerifier, AsymmetricSignatureVerifier
35+
from auth0.authentication.token_verifier import TokenVerifier, AsymmetricSignatureVerifier
3636

3737
domain = 'myaccount.auth0.com'
3838
client_id = 'exampleid'
@@ -194,4 +194,4 @@ async def main():
194194

195195

196196
asyncio.run(main())
197-
```
197+
```

0 commit comments

Comments
 (0)