Coder Social home page Coder Social logo

Token refreshing about python-social-auth HOT 8 CLOSED

omab avatar omab commented on August 17, 2024
Token refreshing

from python-social-auth.

Comments (8)

omab avatar omab commented on August 17, 2024

using load_strategy() at social.apps.django_app.utils.

from python-social-auth.

kakky avatar kakky commented on August 17, 2024

at refresh_token() method

self.get_key_and_secret()  # return (None, None)
self.setting('KEY')  # return ('SOCIAL_AUTH_KEY', 'SOCIAL_AUTH_KEY', 'KEY', 'KEY') ... There is no SOCIAL_AUTH_GOOGLE_OAUTH2_KEY
BACKENDSCACHE  # return {}

So I wrote

from social.apps.django_app.utils import load_strategy
from social.backends.utils import load_backends

user = User.objects.get(...)
social = user.social_auth.filter(provider='google-oauth2')[0]

load_backends(settings.AUTHENTICATION_BACKENDS)
strategy = load_strategy(backend=social.provider)

social.refresh_token(strategy)

Something wrong?

from python-social-auth.

kakky avatar kakky commented on August 17, 2024

I think it is this (if self.REFRESH_TOKEN_METHOD == 'POST')

at social.backends.oauth.BaseOAuth2

    def refresh_token(self, token, *args, **kwargs):
#        params = self.refresh_token_params(token, *args, **kwargs)
        data = self.refresh_token_params(token, *args, **kwargs)
        request = self.request(self.REFRESH_TOKEN_URL or self.ACCESS_TOKEN_URL,
#                               params=params, headers=self.auth_headers(),
                               data=data, headers=self.auth_headers(),
                               method=self.REFRESH_TOKEN_METHOD)
        return self.process_refresh_token_response(request, *args, **kwargs)

from python-social-auth.

omab avatar omab commented on August 17, 2024

I see your code but not an error explanation, what happens when you run that code? What do you mean with "There is no SOCIAL_AUTH_GOOGLE_OAUTH2_KEY"? That's a needed setting to enable google-oauth2 backend.

from python-social-auth.

kakky avatar kakky commented on August 17, 2024

Problem is

1.Perhaps, forget to load the backend instances in load_strategy().

2.If I do not specify a backend name, it is not possible to load the backend origin key and secret. Which backend should be use, maybe guess in refresh_token().

not work. can not find 'SOCIAL_AUTH_' + 'BACKEND_NAME' + '_KEY'

from social.apps.django_app.utils import load_strategy

user = User.objects.get(...)
social = user.social_auth.filter(provider='backend-name')[0]
strategy = load_strategy()
social.refresh_token(strategy)

work

from social.apps.django_app.utils import load_strategy

user = User.objects.get(...)
social = user.social_auth.filter(provider='backend-name')[0]
strategy = load_strategy(backend='backend-name')
social.refresh_token(strategy)

3.Though POST, It becomes the query parameter in the URL.

Sorry about funny English.

from python-social-auth.

omab avatar omab commented on August 17, 2024

@kakky, I've checked the process, the problem was the parameters being passed to the request, since Google OAuth2 uses POST the parameters should be passed in the data argument instead of params. This is fixed now, could you test and close the ticket if looks OK?

from python-social-auth.

kakky avatar kakky commented on August 17, 2024

Thank you. It worked!

from python-social-auth.

omab avatar omab commented on August 17, 2024

No problem!

from python-social-auth.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.