Activities of "maliming"

hi

I will check this case.

Thanks.

Answer

hi

The ABP suite is not designed for API calls. All the input parameters are explained in the UI.

If you want to use the API, you can check the api http request in the Chrome Network Panel.

Thanks

hi

You don't need to add a wildcard domain to the database; you only need add it to WildcardDomainsFormat

Thanks

PreConfigure<AbpOpenIddictWildcardDomainOptions>(options =>
{
    options.EnableWildcardDomainSupport = true;
    options.WildcardDomainsFormat.Add("https://{0}.our.app");
});

hi

context.Services.ConfigureApplicationCookie(options =>
{
    var previousOnSignedIn = options.Events.OnSignedIn;
    options.Events.OnSignedIn = async cookieSignedInContext =>
    {
        await previousOnSignedIn(cookieSignedInContext);
        
        // Your code
        
    };

    var previousOnSigningOut = options.Events.OnSigningOut;
    options.Events.OnSigningOut = async cookieSigningOutContext =>
    {
        await previousOnSigningOut(cookieSigningOutContext);

        // Your code
    };
});

Great

hi

{} and null is no problem.

But {{}} is wrong.

Do you remember why {{}} is write to database? Can you share some code?

Thanks.

Great : )

hi

Can you check the entity data in the database with eventData.Id?

Key focus on the ExtraProperties property.

Thanks.

hi

The EmailTokenProvider implementation is TotpSecurityStampBasedTokenProvider by default.

It uses a fixed TimeSpan.FromMinutes(3) value.

see https://github.com/dotnet/aspnetcore/issues/27088

Thanks.

Answer

Thanks, we also will increase the length in abp 10.0

Showing 231 to 240 of 11094 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 November 04, 2025, 06:41