Activities of "liangshiwei"

Hi,

The problem was solved in 8.2 https://github.com/abpframework/abp/pull/20189

somewhere must still reference identityserver4

you can check the deps.json, for example

Hi,

You don't need to do this anymore.

It's already built into ABP

open saas page to update tenant's feature.

have you check the migration guides?

https://abp.io/docs/latest/release-info/migration-guides

try

  • dotnet ef migrations add updatebookentity
  • dotnet ef database update

Please share the latest log thanks.

Hi,

could you try this:

Add MyAuthentication.razor to the Blazor project.

@page "/authentication/{action}"
@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
<RemoteAuthenticatorView Action="@Action"  OnLogInSucceeded="OnLogInSucceeded" OnLogOutSucceeded="OnLogOutSucceeded"/>
@inject WebAssemblyCachedApplicationConfigurationClient WebAssemblyCachedApplicationConfigurationClient

@inherits Authentication
@attribute [ExposeServices(typeof(Authentication))]
@attribute [Dependency(ReplaceServices = true)]

@code{
    [Parameter] public string Action { get; set; }

    private async Task OnLogInSucceeded(RemoteAuthenticationState obj)
    {
        await WebAssemblyCachedApplicationConfigurationClient.InitializeAsync();
    }
    private async Task OnLogOutSucceeded(RemoteAuthenticationState obj)
    {
        await WebAssemblyCachedApplicationConfigurationClient.InitializeAsync();
    }
}

could you share your redis configuration codes?

You forget add dbset to the dbcontext

https://abp.io/docs/latest/tutorials/book-store/part-01?UI=Blazor&DB=EF#add-the-book-entity-to-the-dbcontext

Sorry,

options.TokenValidationParameters.ValidIssuers = new[] 
{ 
   configuration["AuthServer:Authority"] + "/", 
   configuration["AuthServer:ValidIssuers"] //the port may different 
}; 
Showing 771 to 780 of 6019 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 19, 2024, 12:56