GithubHelp home page GithubHelp logo

Comments (2)

websanova avatar websanova commented on June 8, 2024 1

I believe you should just need a custom driver:

https://github.com/websanova/vue-auth/tree/master/src/drivers/auth

The one you currently have set is "bearer" which will look for the token in the "authorization" header:

https://github.com/websanova/vue-auth/blob/master/src/drivers/auth/bearer.js

So basically you just need to make a custom version of one of those drivers to match what you have.

from vue-auth.

thebleucheese avatar thebleucheese commented on June 8, 2024 1

I believe you should just need a custom driver:

https://github.com/websanova/vue-auth/tree/master/src/drivers/auth

The one you currently have set is "bearer" which will look for the token in the "authorization" header:

https://github.com/websanova/vue-auth/blob/master/src/drivers/auth/bearer.js

So basically you just need to make a custom version of one of those drivers to match what you have.

Ah ok, thanks! This is really easy now that I understand what the driver's doing. I got thrown off by the tokenDefaultKey param I was seeing in the options. I read through the code and realized tokenDefaultKey is for the stored key rather than the key to parse out of the token response body using an Oauth2 password bearer flow.

Here's a really quick and dirty driver that works (so far) with FastAPI's default password bearer implementation.

export default {

    request: function (req, token) {
        this.drivers.http.setHeaders.call(this, req, {
            Authorization: 'Bearer ' + token
        });
    },

    response: function (res) {
        const httpData = this.drivers.http.httpData(res)
        
        let token
        if(httpData.hasOwnProperty('access_token'))
            token = httpData['access_token']

        if (token) {
            return token.trim();
        }
    }
};

from vue-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.