Discogs¶
Discogs uses OAuth v1 for Authentication.
Register a new application int the Discogs API settings, and
Add the Discogs backend to your settings page:
SOCIAL_AUTH_AUTHENTICATION_BACKENDS = ( ... "social_core.backends.discogs.DiscogsOAuth1", ... )
Add the
Client Id
andClient Secret
values in the settings:SOCIAL_AUTH_DISCOGS_KEY = '' SOCIAL_AUTH_DISCOGS_SECRET = ''
Check Discogs API documentation for details.