Just Giving¶
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 |
|---|---|
|
|
OAuth2¶
Follow the steps at Just Giving API Docs to register your application and get the needed keys.
Add the Just Giving OAuth2 backend to your settings page:
SOCIAL_AUTH_AUTHENTICATION_BACKENDS = ( ... 'social_core.backends.justgiving.JustGivingOAuth2', ... )
Fill
App KeyandApp Secretvalues in the settings:SOCIAL_AUTH_JUSTGIVING_KEY = '' SOCIAL_AUTH_JUSTGIVING_SECRET = ''