i want to be authorized on the site with yahoo account. In django app i have django-social-auth==0.7.28, Django==1.10.5 on Python3.5.
my settings.py
AUTHENTICATION_BACKENDS = (
....
'social_core.backends.yahoo.YahooOAuth2',
)
SOCIAL_AUTH_YAHOO_OAUTH2_KEY = 'my_key'
SOCIAL_AUTH_YAHOO_OAUTH2_SECRET = 'my_secret'
and my template
<p><a href="{% url 'social:begin' 'yahoo-oauth2' %}"><b> Yahoo</b></a></p>
All works, but when i enter my login, then email,
i recieve this error
What it is means? And what can i do? Help please.