cors Questions
9
Solved
Im very new to laravel applications.What im trying to do is developing an outlook web addon that uses the API written in laravel . The problem here is ,it produces the CORS error while accessing AP...
Cithara asked 22/6, 2020 at 8:30
5
I'm using GraphQL to communicate between two domains client and server. I have enabled CORS on my API website following the vercel documentation, but it seems to throw a blocked by CORS policy: Res...
Postconsonantal asked 22/5, 2021 at 3:42
2
Solved
I have a deployed app on Heroku that allows me to play audio files. You can check it out here https://telecurve.herokuapp.com/manage. Before I had no issues playing the files in Heroku but after I ...
Damselfly asked 30/7, 2021 at 13:3
2
Solved
My current Nextjs app is pulling its static files from Cloudfront. (I upload the /static folder to S3 during the deployment)
Since updating to version 9 I am facing a weird issue where some of my C...
Eicher asked 24/6, 2021 at 21:41
15
Solved
I'm trying to make a request to my local API from the Swagger documentation, but it always gives this error when I make the request
Meaningless asked 13/9, 2022 at 13:39
11
Solved
I have Spring Cloud gateway running on separate server with the following configuration:
spring:
cloud:
gateway:
globalcors:
cors-configurations:
'[/*]': (I also tried '[/**]':)
allowedOrigin...
Foreandaft asked 3/1, 2022 at 3:58
5
as of yesterday, the code below worked. today, however, i had to run a php artisan config:cache command in laravel as i added a package and now my nice ionic app does not want to run connect to any...
Harleigh asked 9/8, 2018 at 21:36
10
Solved
I have an ASP.NET Core Web API and a separate React app. The Web API uses Windows Authentication. When deployed to the server, I don't have any issues, but when I try to run the app locally, I get ...
Bewitch asked 15/9, 2021 at 16:59
3
Solved
Suppose I have an app at www.example.com (a)
If my resource is at www.someotherdomain.com (b) and I make an AJAX call from
(a) to (b) then CORS rules would apply.
However if my resource is locat...
Weld asked 21/11, 2017 at 4:47
15
I am trying to make a POST call to Django from a React Native Web front end on different subdomains.
I thought I had configured CORS correctly, but that does not seem to be the case.
Here's what my...
Adduction asked 30/4, 2021 at 3:1
7
Solved
If CORS is properly setup on a server to only allow a certain origins to access the server,
Is this enough to prevent CSRF attacks?
Doyen asked 5/11, 2013 at 16:19
6
Solved
I'm making a very simple JSON API in Java. It's actually a Project Zomboid mod that serves object coordinates. This is how my HTTP handler looks like:
public class JSONZomboid implements HttpHandl...
Syzygy asked 9/2, 2016 at 22:43
19
Solved
I have a Next.js app hosted on Vercel at www.example.com, which needs to communicate with a backend .NET Core Web API hosted on a different server at api.example.com.
The .NET core web api has been...
5
Solved
In one of my projects, simply this worked:
import cors from "cors";
server.use(cors());
but currently, I am having this lovely typescript warning message in my new project:
No overload...
Articulate asked 26/12, 2020 at 20:38
3
Solved
I've been having an issue across many of my sites that rely on S3 as an origin for Cloudfront. However, I'm having issues with allowing multiple domains (instead of a global * allowed).
I have fol...
Fluoric asked 5/1, 2016 at 15:25
3
Solved
I have a little html file that calls a javascript file, but when I'm trying to access it in the browser I'm getting the following error:
Access to script at
'file:///C:/Users/jekob/Desktop/battles...
Bookshelf asked 13/9, 2020 at 16:49
3
Yesterday I managed to have my API working on my local computer, however today (same code) on another computer, it's not working, I am getting this error on the console:
Failed to load http://lo...
Sukhum asked 15/3, 2018 at 13:12
4
Solved
I wonder if there are many servers that are supporting CORS?
Era asked 10/2, 2011 at 2:39
4
Solved
I've been looking on the web regarding CORS, and I wanted to confirm if whatever I made of it is, what it actually is.
Mentioned below is a totally fictional scenario.
I'll take an example of a n...
Caspian asked 15/9, 2014 at 9:49
8
I have error
Access to fetch at 'http://localhost:5000/admin/authenticate' from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is presen...
Criseyde asked 20/2, 2019 at 21:47
10
Solved
I am trying to allow access from everywhere.
I have tried using app middleware:
app.use(function (req, res, next) {
res.setHeader("Access-Control-Allow-Origin", "*");
res.setH...
14
Solved
I want to post my contact form to my google script that will send an e-mail to me. I use the following code:
var TO_ADDRESS = "[email protected]"; // where to send form data
function doPost(...
Bullen asked 22/11, 2018 at 15:17
3
Solved
I am building a REST API with actix-web. How do I configure CORS to accept requests from any origin?
Cors::new() // <- Construct CORS middleware builder
.allowed_origin("localhost:8081")
.all...
8
Solved
I am developing a next.js application with nest.js as the backend. Now, I am having cors error even when I have cors enabled in my main.ts file of nest.js.
Here's my main.ts file.
import { NestFa...
Photocopy asked 6/1, 2022 at 15:39
6
So I store images inside my public folder inside a subdirectory called 'images', and I'm trying to make a request to one of them.
However, I constantly get the error;
Access to fetch at 'http://p...
Cheekbone asked 22/10, 2019 at 1:24
1 Next >
© 2022 - 2024 — McMap. All rights reserved.