antosubash / Todos

A Sample Todo Application for ABP.
MIT License
9 stars 8 forks source link

Not Work With OpenIdDict Could not launch redirect url ,any advice please ? #5

Open alraies opened 1 year ago

alraies commented 1 year ago

I use ABP DDD With Flutter so I can't use the API without a token. my ABP version 6.0.2

alihdev commented 1 year ago

I use ABP DDD With Flutter so I can't use the API without a token. my ABP version 6.0.2

You can use attribute [AllowAnonymous] as :

    [AllowAnonymous]
    public Task<AuthorDto> GetAsync(Guid id)
    {
        ...
    }