Upwork¶
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 |
|---|---|
|
|
Upwork supports only OAuth 1.
Register a new application at Upwork Developers.
OAuth1¶
Add the Upwork OAuth backend to your settings page:
SOCIAL_AUTH_AUTHENTICATION_BACKENDS = (
...
'social_core.backends.upwork.UpworkOAuth',
...
)
Fill
App KeyandApp Secretvalues in the settings:SOCIAL_AUTH_UPWORK_KEY = '' SOCIAL_AUTH_UPWORK_SECRET = ''
Note: For more information please go to Upwork API Reference.