Python SDK is no longer encouraged and enriched by Asgardeo and may not work with the latest Python versions.
You can implement login using Authorization Code flow with Asgardeo using OIDC standards.
Asgardeo Auth Python SDK provides the core methods that are needed to implement OIDC authentication in Python based apps. This SDK can be used to build SDKs for Web Applications from different frameworks such as Flask, Django and various other frameworks that use Python. By using Asgardeo and the Asgardeo Auth Python SDK, developers will be able to add identity management to their Python based applications fast and secure.
To enable authentication for the sample application, we are using Asgardeo as the Identity Provider.
Create an organization in Asgardeo if you don't already have one. The organization name you choose will be referred to as <tenant>
throughout this document.
Before trying out the sample apps, you need to create an application in Asgardeo.
-
Navigate to Asgardeo Console and click on Applications under Develop tab.
-
Click on New Application and then Traditional Web Application.
-
Enter Sample as the name of the app and add the redirect URL(s). You can find the relevant redirect URL(s) of each sample app in the Running the sample apps section.
-
Click on Register. You will be navigated to management page of the Sample application.
-
Add
https://localhost:3000
(or whichever the URL your app is hosted on) to Allowed Origins under Protocol tab. -
Click on Update at the bottom.
-
Fork and clone python-sdk repo
-
Update configuration file
conf.py
with your registered app details.
auth_config = {
"login_callback_url": "https://localhost:3000/login",
"logout_callback_url": "https://localhost:3000/signin",
"client_host": "https://localhost:3000",
"client_id": "<client_id>",
"client_secret": "<client_secret>",
"server_origin": "https://api.asgardeo.io",
"tenant_path": "/t/<tenant>",
"tenant": "<tenant>",
"certificate_path": "cert/wso2.crt"
}
-
Obtain an SSL certificate for https://console.asgardeo.io/ and replace the content of wso2.crt with the obtained one.
-
Run
pip3 install -r requirements.txt
-
Run the application.
-
Navigate to
https://localhost:3000
(or whichever the URL you have hosted the sample app) from the browser.
-
Download the Sample: samples/flask
-
Find More Info: README
-
Redirect URL(s):
https://localhost:3000/login
https://localhost:3000/signin
pip install asgardeo-auth-python-sdk
Python Authentication SDK is architectured in a way that any python framework could be integrated with the Core SDK . Currently the SDK itself supports Flask framework. you can find the documentation here.
Still you can implement your own way of implementation using the APIs provided by the core.
Python
pip
package manager.
The repository is a mono repository. The SDK repository is found in the asgardeo_auth directory. You can install the dependencies by running the following command at the root.
pip3 install -r requirements.txt
Please read Contributing to the Code Base for details on our code of conduct, and the process for submitting pull requests to us.
We encourage you to report issues, improvements, and feature requests creating Github Issues.
Important: And please be advised that security issues must be reported to security@wso2com, not as GitHub issues, in order to reach the proper audience. We strongly advise following the WSO2 Security Vulnerability Reporting Guidelines when reporting the security issues.
This project is licensed under the Apache License 2.0. See the LICENSE file for details.