MineID¶
Backend class¶
For Django, add this class path to AUTHENTICATION_BACKENDS. For other
integrations, use the same class path in the framework-specific backend
setting.
Backend name |
Class path |
|---|---|
|
|
MineID works similar to Facebook (OAuth).
Register a new application at MineID.org, set the callback URL to
http://example.com/complete/mineid/replacingexample.comwith your domain.Fill
Client IDandClient Secretvalues in the settings:SOCIAL_AUTH_MINEID_KEY = '' SOCIAL_AUTH_MINEID_SECRET = ''
Self-hosted MineID¶
Since MineID is an Open Source software and can be self-hosted, you can change settings to point to your instance:
SOCIAL_AUTH_MINEID_HOST = 'www.your-mineid-instance.com'
SOCIAL_AUTH_MINEID_SCHEME = 'https' # or 'http'