hi
Please check your web.config file.
https://learn.microsoft.com/en-us/troubleshoot/developer/webapps/iis/health-diagnostic-performance/http-error-405-website https://mozartec.com/asp-net-core-error-405-methods-not-allowed-for-put-and-delete-requests-when-hosted-on-iis/
Thanks
hi
Please share some info first. Then we can join a zoom meeting.
hi
I do not understand it very well. Can you share some screenshots, code and logs? Thanks
hi
Please share the logs.
There is a RedirectAllowedUrls in the AppUrlOptions
You can add your URL to it or override the IsRedirectAllowedUrl method of IAppUrlProvider.
hi
Your domain doesn't have DNS record.
https://www.nslookup.io/domains/tenanta.asw-raas-dev-web.azurewebsites.net/dns-records/
Please add *.asw-raas-dev-web.azurewebsites.net to your service ipaddress
hi
The localhost domain will share the cookies, so your auth server cookies are read by abp commercial Application.
You can use different domains for each website.
eg: https://readme.localtest.me/
hi
You can't get the access_token from httpcontext in your blazor project by default.
Because your situation does not match our design.
You can request the auth server get a new access_token and set it to request in your custom HttpContextIdentityModelRemoteServiceHttpClientAuthenticator
https://github.com/abpframework/abp/blob/rel-7.2/modules/openiddict/app/OpenIddict.Demo.Client.Console/Program.cs#L22-L32
If you still want to call the API
You can add AbpHttpClientIdentityModelWebModule module to your blazor project and override the HttpContextIdentityModelRemoteServiceHttpClientAuthenticator to return an access_token.
https://github.com/abpframework/abp/blob/rel-7.2/framework/src/Volo.Abp.Http.Client.IdentityModel.Web/Volo/Abp/Http/Client/IdentityModel/Web/HttpContextIdentityModelRemoteServiceHttpClientAuthenticator.cs#L37-L46
hi
that you call the interface on the Blazor page.
this means the tiered blazor app which is a pure UI project, your blaozr includes openiddict, account etc, and it is not a UI project.