No project description provided
Project description
# A Simplified OAuth2 Library
## No special configuration required
No special configuration required, use the examples in the sample directory to run.
The default configuration has the following limitations:
Problem 1: Restarting the service will invalidate previous login information.
This is because fastoauth generates a random secret_key each time it starts, and tokens generated with the old secret_key will become invalid.
Problem 2: Tokens cannot be shared between multiple OAuth processes.
Since different processes generate different random secret_keys, tokens cannot be parsed by different processes.
Problem 3: Issued tokens cannot be revoked.
Since tokens are not stored by default and their validity is verified by decryption each time, issued tokens cannot be revoked within their validity period.
## Configuring the secret_key
It is generally recommended to set a secret_key or use Redis for better availability.
This can solve problems 1 and 2 in the default configuration.
> Note: After configuring Redis, the secret_key setting is invalid. Please refer to the Redis section for details.
---
Generating the secret_key
```
openssl rand -hex 32
```
If you don't have the openssl command, you need to install it separately.
```
# Installation on Windows, refer to https://zhuanlan.zhihu.com/p/108833705 for choco installation
choco install openssl -y
```
## Configuring Redis
It is generally recommended to configure Redis for the highest security.
After configuring Redis, all problems in the default configuration can be solved.
At the same time, after configuring Redis, only shorter tokens need to be used during HTTP transmission, and richer content can be stored in Redis.
# A simplified server-side example
In the project directory ./sample/oauth_server.py
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fastoauth-0.1.8.tar.gz
(7.6 kB
view details)
Built Distribution
fastoauth-0.1.8-py3-none-any.whl
(11.4 kB
view details)
File details
Details for the file fastoauth-0.1.8.tar.gz
.
File metadata
- Download URL: fastoauth-0.1.8.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7331318791a0893dbf3dc98b48270f1d5cbef35d2ee860a172eae136181a607d |
|
MD5 | 4846abdf5accd7bd85e659ff3d3b364e |
|
BLAKE2b-256 | d4b1c98b424850b7b105b56a6d74c83ff03467310d74926e7dcb971ce00e176f |
File details
Details for the file fastoauth-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: fastoauth-0.1.8-py3-none-any.whl
- Upload date:
- Size: 11.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 038c3efdb7cb462063cee698b6949e556479da4e9a557fbc20ad1a659f0537bf |
|
MD5 | cc4626b20ea65b2d104e025780eb8775 |
|
BLAKE2b-256 | aeaca404ef811d9533e38125b9dc4e8ae5640bb201d6ddd216787a7718f3ca78 |