Code Monkey home page Code Monkey logo

Comments (5)

henalbrod avatar henalbrod commented on September 14, 2024

As you may notice, appending "permissions" before the claim name is not required anymore, so if this is the case please remove it.

options.AddPolicy("read:weather_forecast", policy => policy.RequireClaim("read:weather_forecast"));

For the example projects to run it is needed to have an API in Auth0 configured as follows:

image

Also, I recommend using the new Universal Login version, especially if you're testing against Google or Facebook:

image

from blazor.auth0.

henalbrod avatar henalbrod commented on September 14, 2024

Hi, any update regarding this issue?

from blazor.auth0.

indcoder avatar indcoder commented on September 14, 2024

Hi @henalbrod , my Auth0 app already had RBAC enabled API since we tested this successfully with the preview 8 code. But I was iterating through the list of claims that was sent across but the permissions are not visible. I'm not sure if Auth0 is not sending them across or the Blazor.Auth0 is not displaying them.

if (user.Identity.IsAuthenticated)
        {
            // Since the user is a ClaimsPrincipal, you can also enumerate claims,
            // evaluate membership in roles, etc.
            Console.WriteLine($"Hello, {user.Identity.Name}");
            
            var claimsIdentity = (ClaimsIdentity)user.Identity;
            foreach(var claim in claimsIdentity.Claims)
            {
                Console.WriteLine($"User has {claim} claim");
            }
            
            currentCount++;
        }
       

from blazor.auth0.

indcoder avatar indcoder commented on September 14, 2024

My bad. An error on my part during configuration

from blazor.auth0.

indcoder avatar indcoder commented on September 14, 2024

My bad. An error on my part during configuration

from blazor.auth0.

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.