Code Monkey home page Code Monkey logo

Comments (3)

TiagoBrenck avatar TiagoBrenck commented on July 16, 2024

There is no need for the scope to be part of the token cache key, because the token saved for that user will be the same but it will contain both scopes. Basically, by the point that the user requested an access token for "scope B", their token will be one containing "scope A" and "scope B".

Does it answer your question?

from active-directory-aspnetcore-webapp-openidconnect-v2.

HenningRoigaard avatar HenningRoigaard commented on July 16, 2024

Well, I expected that "scope B" would be part of the token, i.e., the scope should not be part of the cache key. The question was more along the line of how it gets to be part of the token? Since we cannot simply edit a token issued by the AD, someone somewhere must request a new token from the AD containing the new scope.

I guess I just wanted to get confirmation, that adding scopes to tokens was indeed taken care of elsewhere (and probably in Microsoft.Identity.Client), and thus was not relevant for the cache key.

from active-directory-aspnetcore-webapp-openidconnect-v2.

jmprieur avatar jmprieur commented on July 16, 2024

@HenningRoigaard . Indeed it's taken care by Azure AD, called by MSAL.NET (which will use AcquireTokenSilent to request a token with a new scope. Note that if the new scope is for the same Web API, this will be completely silent. However if the new scope is for an API where the user has not yet consented, Microsoft.Identity.Web will cause a challenge which will trigger ASP.NET core to prompt the user for consent. When that's done the call will happen again and it will be silent. This is enccapsulated by TokenAcquisition.GetAccessTokenOnBehalfOfUser

from active-directory-aspnetcore-webapp-openidconnect-v2.

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.