: )
hi
You can add a new property to OpenIddictApplication entity by https://abp.io/docs/latest/framework/architecture/modularity/extending/customizing-application-modules-extending-entities
The new property can be string, you can upload an image to your application. Then, set the URL or image for this new property.
ObjectExtension system doesn't support file upload yet
Thanks.
hi
I think OpenIddict Server doesn't support tls_client_certificate_bound_access_tokens yet.
See https://github.com/openiddict/openiddict-core/blob/dev/src/OpenIddict.Server/OpenIddictServerHandlers.Discovery.cs#L796-L801
hi
The list arekey-value of timezone. But you can get DST info by TZConvert https://github.com/mattjohnsonpint/TimeZoneConverter
var timeZoneInfo = TZConvert.GetTimeZoneInfo("Central Europe Standard Time");
Time Zone Name: (UTC+01:00) Central European Time (Budapest)
Time Zone ID: Europe/Budapest
Standard Time Offset: 01:00:00
..///
Effective Period: 2024/3/31 - 2024/10/27
Daylight Saving Offset: 01:00:00
Start: System.TimeZoneInfo+TransitionTime
End: System.TimeZoneInfo+TransitionTime
Effective Period: 2025/3/30 - 2025/10/26
Daylight Saving Offset: 01:00:00
Start: System.TimeZoneInfo+TransitionTime
End: System.TimeZoneInfo+TransitionTime
..///
hi
I think they only are time offset with UTC.
eg: UTC-5, UTC+3, UTC+8
hi
Does your timezone capability support DST feature? Could you please confirm?
ABP timezone is just a setting. The user or system can set it.
You have to add code to convert UTC to DST.
UTC .UTC time to user timezone and add or subtract a few hours based on DST info.hi
This will be fixed in next patch version(9.0.4)
https://github.com/abpframework/abp/pull/21841
hi
i get an http 400 error on the angular app.
Can you share a screenshot of this error?
Please share the Logs.txt of your API or AuthServer websites.
liming.ma@volosoft.com
Thanks.
hi
how can I achieve the security feature Manual-Ltd https://www.rfc-editor.org/rfc/rfc8705
I'm not proficient in this. If you have any questions/problems about openiddict, you can leave a message here.
Thanks.
hi
You can set Clock to UTC, after that all data time will be UTC, then you can convert the UTC time to the user's timezone.
If the user doesn't set the time zone, you can get the current time zone from the browser.
Configure<AbpClockOptions>(options =>
{
options.Kind = DateTimeKind.Utc;
});