Currently I am using the Python Social Auth module for authenticating users via OAuth service providers such as Google, Facebook, Github and Stack Overflow.
I have completed the process for fb, google and github, but I do not know how to do it for stackoverflow. The tutorial sites say that I need to give the following in settings.py:
SOCIAL_AUTH_STACKOVERFLOW_KEY = ''
SOCIAL_AUTH_STACKOVERFLOW_SECRET = ''
SOCIAL_AUTH_STACKOVERFLOW_API_KEY = ''
What should be given in the template? For instance, I gave the following for google:
<a href = "{% url 'social:begin' 'google-oauth2' %}?next={{ request.path }}" > Google</a>
What is its equivalent for Stack Overflow? Kindly help, thanks in advance.