Activities of "liangshiwei"

You can try add these packages to your project

<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="7.5.1" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.5.1" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.1" />

HI,

you can disable local login

https://abp.io/docs/latest/modules/account-pro#local-login

If you use Social / External Logins, It is automatically called for authentication when logging in.

Just to make sure, the KeyPrefix can be anything,

yes.

However, I am still getting the exact same error:

i think this is a problem, is the problem can reproduce in local?

: )

you can get tenant entity here.

var tenant = await tenantRepository.FindAsync(eventData.Id);

Hi,

Basically you can ignore it, It is designed for audit purposes

I have tried to solve this and followed steps but web project is not starting

could you share the project with me? shiwei.liang@volosoft.com

HI,

you can try this

[Authorize]
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(ITenantAppService))]
public class MyTenantAppService : TenantAppService
{
    ....
    
    [AllowAnonymous]
    public override Task<SaasTenantDto> CreateAsync(SaasTenantCreateDto input)
    {
        //Manually check permissions here
        ...
    }
}

Hi,

All projects should use the same Redis config.(connection string, key prefix)

Configure<AbpDistributedCacheOptions>(options =>
{
    options.KeyPrefix = ...
});

Hi,

I think it's all. We have not changed Identity server in these versions.

you can give it a try, if there any problem you get, you can write it here

Showing 61 to 70 of 5643 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30