Social provider for django-allauth - ID4me https://id4me.org
Project description
django-allauth-id4me
Extension library for django-allauth to support ID4me (https://id4me.org) as social login provider.
Specification reference
https://gitlab.com/ID4me/documentation/blob/master/id4ME%20Technical%20Specification.adoc
- Version: 1.0
- Revision: 02
Installation
Install the package from pip
pip install django-allauth-id4me
Configure django-allauth if not yet installed
Configure django project
Add allauth_id4me
to INSTALLED_APPS
in your settings.py
:
INSTALLED_APPS = (
...
# ... include the providers you want to enable:
'allauth_id4me',
...
)
Run migrations in your django project
python manage.py migrate
Add social client configuration
Start your django project
python.exe manage.py runserver localhost:8000
Open /admin application http://localhost:8000/admin/
Go to Home › Social Accounts › Social applications and add new application:
- Provider: ID4me
- Name: the name of your application (will appear on login screen)
- Client id: wished client_id, may however not be respected
- Secret key: not used, fill with dummy value
Open http://localhost:8000/accounts/login/ and test the login with ID4me!
Template customization
To present own ID4me login page it is enough to place new template in id4me
folder inside your templates
dictionary named login.html
. Minimum required content:
<form id="id4me_login_form" class="id4me_login" method="post" action="{% url 'id4me_login' %}">
{% csrf_token %}
{{form.as_p}}
<button type="submit">Sign In</button>
</form>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for django-allauth-id4me-0.0.10.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0e44c16c170d2e9f8d5621ec8a7945783271445c347340b04b667a8d380cbab |
|
MD5 | 2529002c0fc8e0af1eed8d1f5e1f9342 |
|
BLAKE2b-256 | 3fb12b301009460c5eeb35903ca173cb6d2d729c242720a8e92d061bf07a1644 |
Hashes for django_allauth_id4me-0.0.10-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c21114ecf25957e7a2e97c39eb21e747c2c5203c5c0e7a15fe18b729f256d40a |
|
MD5 | 354847319b8cba46897014b9ae77f5cd |
|
BLAKE2b-256 | 0186fe68257adf09caa47aa14ce37bcd939bae2c8df6416595587afaa446dbad |