I need to call a function method complete_login:
class VKOAuth2Adapter(OAuth2Adapter):
...
def complete_login(self, request, app, token, **kwargs):
...
It should be really easy, but i cant understand what parameter should be send in "self". I know why its there, but how to call such method?
login = VKOAuth2Adapter.complete_login( ??? , request, app, token)
Thanks.