ArcGIS¶
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 |
|---|---|
|
|
ArcGIS uses OAuth2 for authentication.
Register a new application at ArcGIS Developer Center.
OAuth2¶
Add the OAuth2 backend to your settings page:
AUTHENTICATION_BACKENDS = ( ... 'social_core.backends.arcgis.ArcGISOAuth2', ... )
Fill
Client IdandClient Secretvalues in the settings:SOCIAL_AUTH_ARCGIS_KEY = '' SOCIAL_AUTH_ARCGIS_SECRET = ''