- Implemented OAuth2 server with client registration, authorization, and token endpoints. - Created HTML templates for client authorization, client creation, and client editing. - Developed an OAuth2 client application using Hono.js and Bun, supporting authorization code grant flow. - Integrated PKCE (Proof Key for Code Exchange) for enhanced security during authorization. - Added session management using cookies for user authentication. - Included detailed README documentation for setup and usage instructions.
9 lines
178 B
TOML
9 lines
178 B
TOML
[project]
|
|
name = "example-oauth2-server"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"authlib>=1.6.0",
|
|
"flask>=3.1.1",
|
|
"flask-sqlalchemy>=3.1.1",
|
|
]
|