Activities of "rajasekhard2015"

Hi maliming,

Thanks for reply. Below are the steps i have done for Identity Server Client creation.Please check and help to solve my problem.

Service Provider Test Application

Clicking on Yes,Allow button in consent page getting error as ahown in below image

In Service Provider application,Configured the Idendity Provider Client details like as below.

services.AddAuthentication(options =>
            {
                options.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme;
                options.DefaultChallengeScheme = "oidc";
            })
                .AddCookie(options =>
                {
                    options.ExpireTimeSpan = TimeSpan.FromMinutes(60);
                    options.Cookie.Name = "mvcimplicit";
                })
               .AddOpenIdConnect("oidc", options =>
               {
                   options.Authority = Constants.Authority;
                   options.RequireHttpsMetadata = false;

                   options.ClientId = "mvcimplicit";

                   options.Scope.Clear();
                   options.Scope.Add("openid");
                   options.Scope.Add("profile");
                   options.Scope.Add("email");                 

                   options.SaveTokens = true;

                   options.TokenValidationParameters = new TokenValidationParameters
                   {
                       NameClaimType = JwtClaimTypes.Name,
                       RoleClaimType = JwtClaimTypes.Role,
                   };
               });
Showing 21 to 21 of 21 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20