hi
Hi, I've tried this and doesn't work.
Can you share a simple project to show that?
Thanks.
liming.ma@volosoft.com
hi
Can you share the debug logs? liming.ma@volosoft.com
https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
Thanks.
hi
The logs don't show any authorization error. Do you have an API website?
Please share the API logs(please ShowPII and output identity model logs.
).
Thanks.
hi
liming.ma@volosoft.com
hi
It looks like the default token lifetime is still set to 1 hour. After 1 hour, I lose authorization and have to log in again.
Can you enable the debug logs(Verbose
for openiddict)?
https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
hi
Inter-service calls should not require authentication.
You can consider using Integration Services
https://abp.io/docs/latest/framework/api-development/integration-services
hi
Can you call the await UnitOfWorkManager.Current.SaveChangesAsync();
after DeleteAsync
?
eg:
await this.VehicleRepository.DeleteAsync(vehicleId);
await UnitOfWorkManager.Current.SaveChangesAsync();
var shipment = await _shipmentRepository.GetAsync(shipmentId);
var count = shipment.Vehicles.Count;
hi
It has no size limit by default, but you are not advised to perform encryption and decryption on very long text.
https://abp.io/community/articles/encryption-and-decryption-in-abp-framework-37uqhdwz
hi
Have you added the AbpAspNetCoreAuthenticationJwtBearerModule
in AdministrationService
?