Giter Site home page Giter Site logo

Comments (6)

miguelgrinberg avatar miguelgrinberg commented on June 9, 2024

Yes, you are absolutely right, I'll rename it.

from flask-httpauth.

comatrion avatar comatrion commented on June 9, 2024

References remain e.g.

from itsdangerous import TimedJSONWebSignatureSerializer as JWT

curl -X GET -H "Authorization: Bearer <jwt-token>" http://localhost:5000/

In the examples directory you can find a complete example that uses JWT tokens.

Applications sometimes need to support a combination of authentication methods. For example, a web application could be authenticated by sending client id and secret over basic authentication, while third party API clients use a JWT bearer token. The `MultiAuth` class allows you to protect a route with more than one authentication object. To grant access to the endpoint, one of the authentication methods must validate.

from flask-httpauth.

alensiljak avatar alensiljak commented on June 9, 2024

Does that mean that, if we were to use

def generate_token(self, user_id):
        """
        Generates the Auth Token
        :return: string
        """
        try:
            # set up a payload with an expiration time
            payload = {
                'exp': datetime.utcnow() + timedelta(minutes=5),
                'iat': datetime.utcnow(),
                'sub': user_id
            }
            # create the byte string token using the payload and the SECRET key
            secret = current_app.config.get('SECRET_KEY')
            jwt_string = jwt.encode(
                payload,
                secret,
                algorithm='HS256'
            )
            return jwt_string

        except Exception as e:
            # return an error in string format if an exception occurs
            return str(e)

    @staticmethod
    def decode_token(token):
        """
        Validates the auth token.
        Decodes the access token from the Authorization header.
        :param auth_token:
        :return: integer|string
        """
        try:
            # try to decode the token using our SECRET variable
            secret = current_app.config.get('SECRET_KEY')
            # is_blacklisted_token = BlacklistToken.check_blacklist(auth_token)
            payload = jwt.decode(token, secret)
            return payload['sub']
        except jwt.ExpiredSignatureError:
            # the token is expired, return an error string
            return "Expired token. Please login to get a new token"
        except jwt.InvalidTokenError:
            # the token is invalid, return an error string
            return "Invalid token. Please register or login"

instead of the JWS Serializer, the reference to JWT would be correct? Is this all that is necessary to correctly utilize JWT tokens?

from flask-httpauth.

unuseless avatar unuseless commented on June 9, 2024

@mistery If I correctly understand your code, you utilize pyjwt (though no import statement in your code). If you use pyjwt it's easy to use JWT tokens.
@miguelgrinberg 's code just uses itsdangerous, so no extra external dependency needed.
In terms of token usage, when you pass such a token back and forth in your app, it should not matter if you use JWS or JWT.

from flask-httpauth.

alensiljak avatar alensiljak commented on June 9, 2024

@unuseless, that's correct. There's import jwt statement at the top (ref: here).
Thanks for the clarifications.
I was mostly concerned about using some standard way of handling tokens as the clients will, most likely, be JavaScript from a Progressive Web Applications or perhaps other mobile apps. I have not made a final decision. Too many options available but none of them fits my goals of being cross-platform and easy to maintain.

from flask-httpauth.

miguelgrinberg avatar miguelgrinberg commented on June 9, 2024

Addressed by #79. Closing.

from flask-httpauth.

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.