Replies: 1 comment
-
solved
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm trying to provide access to an API from an external website.
The API is built within my 'server' Oqtane project.
Here’s what I did:
in the header of my controller I enabled CORS:
[Microsoft.AspNetCore.Cors.EnableCors("myCORSPolicy")]
[HttpGet("ListAllEntities")]
public async Task<List> ListAllEntities()
{...}
in StartUpServer.cs (in the Repository folder) I added these rows
public void ConfigureServices(IServiceCollection services)
{
services.AddCors(options =>
{
options.AddPolicy("myCORSPolicy",policy =>
{
policy.AllowAnyHeader().AllowAnyMethod().AllowAnyHeader().AllowCredentials();
});
});
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app.UseCors("myCORSPolicy");
}
After these settings the external client still get error message "Access to XMLHttpRequest ... from origin ... has been blocked by CORS policy"
Is this correct or there's something missing?
thanks in advance
Beta Was this translation helpful? Give feedback.
All reactions