Coder Social home page Coder Social logo

Comments (4)

nfvs avatar nfvs commented on May 17, 2024

Sorry it actually exists as a property, but it was returning None:

    @property
    def add_token(self):
        if not self.token:
            return None

        token_type = self.token['token_type'].lower()
        if token_type == 'bearer':
            return add_bearer_token

I followed the docs and had token_type="oauth1.0", which was making that function return None.

from authlib.

lepture avatar lepture commented on May 17, 2024

@nfvs OAuth2Session is designed for OAuth 2. Currently, it only supports bearer token.

I followed the docs and had token_type="oauth1.0"

Where did you find this in the documentation? It must be a mistake.

Are you trying OAuth 1? Then you should use OAuth1Session.

from authlib.

nfvs avatar nfvs commented on May 17, 2024

I'm using OAuth 2 actually. My mistake, the model only has OAUTH1_TOKEN_TYPE = 'oauth1.0': https://docs.authlib.org/en/latest/client/frameworks.html#cache-database

I'm storing the tokens in flask's session cookie, right after calling authorize_access_token(), and then in fetch_token I was just hardcoding a token_type.

from authlib.

lepture avatar lepture commented on May 17, 2024

@nfvs It is not safe to store a token in session cookies. If you are just doing it for testing, that's ok.

from authlib.

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.