HTML & Django Quickstart
This is a quickstart guide to help you integrate Descope with your HTML & Django application. Follow the steps below to get started.
Import SDK
You must import our WebJS and Web Component SDKs in order to use the Descope Flows component.
Import Descope Functions and Add Flows Component
To trigger the Descope Flow, you will need to add this component. The screens you've customized in your Flow will appear here. You can also customize the component with the following:
flowId
: ID of the flow you wish to useonSuccess
andonError
: functions that execute when authentication succeeds or fails
Note
If you are using the autoRefresh token feature in the WebJS SDK, you will need to call sdk.refresh()
in your onSuccess()
function.
You can use the logic below to validate whether or not a user is logged in, before deciding to display the login flow. You can use the following parameters when initializing the SDK:
persistTokens
: this will force existing tokens to be included in all outgoing requestsautoRefresh
: this will automatically refresh sessions once they are expired, if the refresh token is valid
Note
For the full list of component customization options, refer to our Descope Components Customization Doc.
Make Sure Session Persists Across All Pages
On all of your frontend pages, you'll need to make sure that sdk.refresh()
is called at the top of each page in <script>
tags. Add the following logic to every authenticated page you have in your application.
Install Backend SDK
Install the SDK with the following command:
Import and Setup Backend SDK
You'll need install and setup all of the packages from the SDK. This is done by ensuring django_descope
is under INSTALLED_APPS
in settings.py
.
If you're using a CNAME with your Descope project, make sure to export the Base URL (e.g. export DESCOPE_BASE_URI="https://api.descope.com"
) when initializing descope_client
.
Add Descope Middleware
Ensure Descope Middleware is after the AuthenticationMiddleware and SessionMiddleware.
Configure URLconf
You will then need to include the Descope URLconf in your project urls.py
like this.
Configure URLconf
The session validation is handled in the Django SDK, through the middleware.
Congratulations
Now that you've got the authentication down, go focus on building out the rest of your app!
Here is a sample application using the Django SDK.
Checkpoint
Your application is now integrated with Descope. Please test with sign-up or sign-in use case.
Customize
Now that you have the end-to-end application working, you can choose to configure and personalize many different areas of Descope, including your brand, style, custom user authentication journeys, etc. We recommend starting with customizing your user-facing screens, such as signup and login.