Activities of "maliming"

hi

Remove your previous code

builder.Services.AddAuthentication(options => { options.DefaultScheme = CookieAuthenticationDefaults.AuthenticationScheme; })
.AddCookie(options =>
 { 
      options.ExpireTimeSpan = TimeSpan.FromMinutes(10); 
      options.SlidingExpiration = true; 
});

add the new below:


private void ConfigureExternalProviders(ServiceConfigurationContext context, IConfiguration configuration)
{
    context.Services.ConfigureApplicationCookie(options =>
    {
        options.ExpireTimeSpan = TimeSpan.FromMinutes(3);
        options.SlidingExpiration = true;
        options.Events.OnSigningIn = cookie =>
        {
            cookie.Properties.IsPersistent = true;
            return Task.CompletedTask;
        };
    });

    context.Services.AddAuthentication()
        .AddGoogle(GoogleDefaults.AuthenticationScheme, _ => { })
        .WithDynamicOptions<GoogleOptions, GoogleHandler>(
        ....

hi

I mean access_token.

Authorization: Bearer access_token....

hi

hi

Is the ui angular?

hi

Please share the code of IntergenLabBlazorModule

hi

Please replace these packages with local references.

Yes You can run abp clean command and remove the node_modules, then compess the folder.

hi

Authenticationscheme : openIddict. validation.AspNetcore was not authenticated.

Does your request carry the access_token?

You're welcome. : )

hi

You can try graphbuild, The graphBuild ensures that referenced projects are built after the projects they depend on.

dotnet build /graphbuild
Showing 6401 to 6410 of 11542 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.