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,
                   };
               });

Thanks for your solution its working for now.

Please reply us when the issue is fixed.

Answer

I have followed and modified the login UI give by you (https://gist.github.com/ebicoglu/eebfbc7368b3ab1b739afdf56a293d8f).

I am able to see the changes in debugging the application. but unable to see the changes in release mode after deployement.

Thank you. it's working

I Have added the code as you given in the document. but its not reflecting in the UI (unable to see the custom settings)

No.. just added the customsettings provider only. Please give me the steps. based on that i will create.

Thanks for your response.

Hi I have added the functionality like,

$(function() { abp.log.info('My custom user script file has been loaded!');

//TODO how to get user instance to add another action

});

JavaScript Then add this file to the bundle of the role management page:

Configure<AbpBundlingOptions>(options => { options.ScriptBundles .Configure( typeof(Volo.Abp.Identity.Web.Pages.Identity.Users.IndexModel).FullName, bundleConfig => { bundleConfig.AddFiles("/Pages/Identity/Users/myuser.js"); }); });

In Js file how can i get the user page instance please give me that steps

index.js file where can i get that.

Thank you liangshiwei its working.

Zobrazeno od 1 do 10 z celkem 21 záznamů
Made with ❤️ on ABP v8.2.0-preview Updated on března 25, 2024, 15:11