Skip to content

kinde-starter-kits/python-starter-kit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kinde Starter Kit - Flask

Register an account on Kinde

To get started set up an account on Kinde.

Setup your local environment

Clone this repo and install dependencies by running

$ pip install -r requirements.txt

The minimum required version of Python is 3.8.

Set the variables in config.py with the details from the Kinde App Keys page

KINDE_ISSUER_URL - The token host value

KINDE_CALLBACK_URL - The callback URL

LOGOUT_REDIRECT_URL - The logout URL (after logging out)

CLIENT_ID - The client id

CLIENT_SECRET - The client secret

e.g.

KINDE_ISSUER_URL = "https://<your_kinde_subdomain>.kinde.com"
KINDE_CALLBACK_URL = "http://localhost:5000/api/auth/kinde_callback"
LOGOUT_REDIRECT_URL = "http://localhost:5000"
CLIENT_ID = "<your_kinde_client_id>"
CLIENT_SECRET = "<your_kinde_client_secret>"

Set your Callback and Logout URLs

Your user will be redirected to Kinde to authenticate. After they have logged in or registered they will be redirected back to your Flask application.

You need to specify in Kinde which URL you would like your user to be redirected to in order to authenticate your app.

On the App Keys page set Allowed callback URLs to http://localhost:5000/api/auth/kinde_callback

Important! This is required for your users to successfully log in to your app.

You will also need to set the URL they will be redirected to upon logout. Set the Allowed logout redirect URLs to http://localhost:5000.

Start the app

Run flask run and navigate to http://localhost:5000.

Click on Sign up and register your first user for your business!

View users in Kinde

If you navigate to the "Users" page within Kinde you will see your newly registered user there. 🚀

About

Starter kit to get going with Python

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published