hi
I will check this case.
Thanks.
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.
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.
Thanks, we also will increase the length in abp 10.0