Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/corbado/example-passkeys-python-flask
Python Flask passkey repository of a sample app that offers passkey authentication.
https://github.com/corbado/example-passkeys-python-flask
faceid fido2 flask passkey passkeys python touchid webauthn
Last synced: 28 days ago
JSON representation
Python Flask passkey repository of a sample app that offers passkey authentication.
- Host: GitHub
- URL: https://github.com/corbado/example-passkeys-python-flask
- Owner: corbado
- Created: 2023-09-14T13:17:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-17T05:20:16.000Z (2 months ago)
- Last Synced: 2024-10-19T07:40:01.558Z (2 months ago)
- Topics: faceid, fido2, flask, passkey, passkeys, python, touchid, webauthn
- Language: HTML
- Homepage: https://www.corbado.com/passkeys/flask
- Size: 33.2 KB
- Stars: 5
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask Passkey Example App
## Project Overview
This project implements a web application with a login system using Corbado's passkey-first authentication service
integrated with a Flask backend. The application consists of two main pages: a login page and a home page. Once users
log in successfully via the Corbado service on the login page, they are redirected to the home page where they can log
out and view protected content.Please see the [full blog post](https://www.corbado.com/blog/passkeys-python-flask) to understand the detailed steps needed to integrate passkeys into Flask apps.
## Tools and Technologies Used
- **Flask**: A lightweight WSGI web application framework in Python, used to build the backend of the application.
- **Corbado Python SDK**: A comprehensive Python SDK for interacting with Corbado services.
- **Python-dotenv**: A Python package to read key-value pairs from a `.env` file and set them as environment variables.
- **HTML & CSS**: Used to structure and style the frontend of the application.## Features
- **Passkey-first Authentication**: Utilizes Corbado's authentication service for secure user login.
- **Session management**: Uses Corbado's session management to display content based on the user's authentication status.## How to Use
### Step 1: Clone the Repository
Clone this repository to your local machine by running:
```sh
git clone https://github.com/corbado/example-passkeys-python-flask```
### Step 2: Create .env File
To configure the credentials, you will need to create a `.env` file with your `Project ID` and `API secret` from Corbado:
To get your `Project ID` and `API secret` visit your [Corbado developer panel](https://app.corbado.com/?technology=passkeys&framework=Flask#signup-init).Please refer to the [Corbado docs](https://docs.corbado.com/overview/welcome) for more details on obtaining the
necessary credentials and integrating Corbado authentication in your application.```sh
PROJECT_ID=
API_SECRET=
```### Step 3: Run the Project
Use the following command to run the project in a docker container:
```sh
docker compose up
```Open your browser and navigate to `http://localhost:3000` to view the application.
Caution: On `http://127.0.0.1:3000` passkeys will not work!