In fact, it should only exist in the AuthServer project. Why do you access it in the API project?
Great
hi
Message contains error: 'invalid_grant', error_description: 'The issuer associated to the specified token is not valid.', error_uri: 'https://documentation.openiddict.com/errors/ID2088', status code '400'.
The issuer
in your access token has a problem.
Can you share an access token with liming.ma@volosoft.com
Thanks.
hi
Try this:
private async Task UpdateVehicleCount(Guid shipmentId)
{
using (var uow = this.UnitOfWorkManager.Begin(requiresNew: true))
{
var shipment = await this.ShipmentRepository.GetAsync(shipmentId);
shipment.VehicleCount = shipment.Vehicles.Count;
await this.ShipmentRepository.UpdateAsync(shipment);
await uow.CompleteAsync();
}
}
hi
What is your project structure(screenshot)?
Which project is the exception log from?
Maybe you have added External provider
in the authserver, but access it in the API website.
Thanks.
hi
Can you share the Microservice Template
project source code?
I will check your DistributedEvent
code.
Thanks.
liming.ma@volosoft.com
Sure. Your ticket has been refunded.
Thanks.
hi
It's a static demo website. You can check the source code by Browser:
view-source:https://x.leptontheme.com/side-menu/widgets/charts
hi
Can you try this way?
https://abp.io/docs/latest/modules/account-pro#install-a-new-external-login
hi
now facing the invalid_grant error and not sure how to resolve this.
Can you share full debug/error logs?
https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems
liming.ma@volosoft.com
Thanks.