Activities of "Anjali_Musmade"

Hi,

We have released a patch release for LeptonXToolBar issue. To fix the error in your current project, first perform abp clean or dotnet clean on your current project. Then you need to run the abp bundle command in the Blazor project. please check now its working fine.

Thanks, Anjali

Hi,

We have released a patch release for LeptonXToolBar issue. To fix the error in your current project, first perform abp clean or dotnet clean on your current project. Then you need to run the abp bundle command in the Blazor project. please check now its working fine.

Thanks, Anjali

Hi

Can you share your In BookStoreAuthServerModule

in BookStoreHttpApiHostModule

Hi

i see difference between my token and your toke there is no scope in your token

Hi

can you decode your access_token on https://jwt.io/ ? or please share the acess_token

Hi

i see that you added bookstore as a scope it should be HealthySmiles

also can you run this query and see if you have assigned permission to the client

select * from [dbo].[AbpPermissionGrants] where ProviderKey = 'HealthySmiles_Auth'

for me i get

I didn't get this error let me try to reproduce at my end. And can you please replace all 7.3.3 version to 7.3.2 then follow same delete yarn.lock then yarn

Hello SamirBoutazzout ,

can you please check this https://github.com/abpframework/abp/issues/3758

https://github.com/abpframework/abp/blob/99806b7621fdc10cf2c6e6f4d994612656bda870/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/ApplicationConfigurations/AbpApplicationConfigurationController.cs#L9

https://github.com/abpframework/abp/blob/99806b7621fdc10cf2c6e6f4d994612656bda870/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/ApplicationConfigurations/AbpApplicationConfigurationAppService.cs#L28

it is used to determine the application language, settings etc which is not related to user unless they login when a user is not logged in it doesn't give user related information.

Can you share a screenshot of the http response where it shows user information without login?

please do let me know if it helps you

Thank you, Anjali

Hello scottie.tang@cpy.com.hk,

Yes you are right ; you need to update step by step as 3.3.x to 4.0, then 4.x to 5.0 and so on.

Also have look to this similar issue https://support.abp.io/QA/Questions/5599/Need-Information-on-Abp-Version-upgrade-from-513-to-732

Thanks, Anjali

Answer

Hello selcukdurann@gmail.com,

can you please try to update the given code block in API Host Module.cs file

    private void ConfigureAuthentication(ServiceConfigurationContext context, IConfiguration configuration)
    {
        context.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
            .AddJwtBearer(options =>
            {
                options.Authority = configuration["AuthServer:Authority"];
                options.RequireHttpsMetadata = Convert.ToBoolean(configuration["AuthServer:RequireHttpsMetadata"]);
                options.Audience = "tiered732";
                options.BackchannelHttpHandler = GetHandler();
            });
    }
    private static HttpClientHandler GetHandler()
    {
        var handler = new HttpClientHandler();
        handler.ClientCertificateOptions = ClientCertificateOption.Manual;
        handler.SslProtocols = SslProtocols.Tls12;
        handler.ServerCertificateCustomValidationCallback = (message, cert, chain, errors) => true;
        return handler;
    }

please do let me know if it helps you

Thank you, Anjali

Showing 681 to 690 of 1087 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 23, 2024, 05:12