GithubHelp home page GithubHelp logo

Comments (6)

F21 avatar F21 commented on June 12, 2024

I just had a sticky beak at facebook's implementation and it looks like in their case, they will actually send you the existing token again if you request it again and the token is not expired.

from oauth2-server-php.

bshaffer avatar bshaffer commented on June 12, 2024

This is a tricky one... I cannot find anything in the spec to address this. The closest reference to this I have found is here:

Refresh tokens are issued to the client by the authorization server and are
used to obtain a new access token when the current access token
becomes invalid or expires, or to obtain additional access tokens
with identical or narrower scope (access tokens may have a shorter
lifetime and fewer permissions than authorized by the resource
owner

This implies that multiple access tokens with "identical or narrower scope" can exist at the time time. Perhaps we should make this configurable, and return the existing token by default.

from oauth2-server-php.

ccazette avatar ccazette commented on June 12, 2024

@bshaffer Thanks for the answer.
Facebook's implementation returns your existing access token straight through redirects, but you're originally requesting against the /authorize endpoint. Meaning before returning the existing access token, you can check if its scope match the requested scope of the new authorize request.
If yes, return it. If no, go through the entire OAuth dance again, and generate a new token.

from oauth2-server-php.

F21 avatar F21 commented on June 12, 2024

@bshaffer: Yes, perhaps we can mimic FB's implementation. How would you suggest this be done? Just a parameter in the $config array in the constructor of the server?

from oauth2-server-php.

bshaffer avatar bshaffer commented on June 12, 2024

@F21 yes, but more specifically the GrantController, as the Server class is nothing more than a convenience wrapper for the three Controllers (if that's confusing, I'm sorry. Not sure how to get around that one).

If the flag is set, we'd just want to perform a call to getAccessToken with the proper checks, and skip the creation. It should be pretty straightforward

from oauth2-server-php.

F21 avatar F21 commented on June 12, 2024

@bshaffer Would like to have a crack at this. What are your views on implementing this?

Looking at #122, we would implement a check to see if the token exists and return the old token in createAccessToken() in ResponseType\AccessToken. Is this still the case?

Should this behaviour be the default behaviour? Should there be a configuration flag to turn this on and off? I see that the Server class has some functionality to set/get configuration. However, this is not being passed to the TokenController at all.

Finally, I am thinking that we should have a "fuzzy parameter" with a default of say 20 seconds. If the token expires 20 seconds from now, we return a new token instead.

from oauth2-server-php.

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.