Hello ,
Can you please check the similar issue https://abp.io/support/questions/8010/OTP-based-login-Implementation-Passwordless-login-implementation-guider
Thank you.
Hello ,
In your scenario, the endpoint /api/app/books/{id} requires an id, meaning the id is mandatory. If you don't provide an id, an error will be shown.
However, you want to pass the id without showing it in the path, and still retrive the record whether or not the id is provided. To achieve this, you should use the endpoint /api/app/books and pass the id as a filter parameter. This way, it will work correctly and show the record regardless of whether the id is passed or not.
Thank you.
Hello,
Yes sure we will work on it and try to improve in future. Actually this seems in very rare cases. You may close the ticket if your issue is resolved.
Thanks : ),
Hello,
Can you please try IsDynamicClaimsEnabled = false
context.Services.Configure<AbpClaimsPrincipalFactoryOptions>(options =>
{
options.IsDynamicClaimsEnabled = false;
});
Thank you.
Hello,
Thanks for your findings I will close the issue and will refund your ticket.
:)
Hello,
Oh ok is that the case, let me check again.
Thanks