Access to XMLHttpRequest at 'http://localhost:3001/socket.io/?EIO=3&transport=polling&t=NSYArA8' from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
See original GitHub issueserver
const express = require('express')
const app = express()
const server = require('http').createServer(app)
express.json()
express.urlencoded({extended: true})
const io = require('socket.io')(server,
{
origins: ["http://localhost:3000"],
handlePreflightRequest: (req, res) => {
res.writeHead(200, {
"Access-Control-Allow-Origin": "http://localhost:3000",
"Access-Control-Allow-Methods": "GET,POST",
"Access-Control-Allow-Headers": "my-custom-header",
"Access-Control-Allow-Credentials": true
});
res.end();
}
}
)
io.on('connection', socket => {
console.log('IO connected')
})
module.exports = {
app, server
}
frontend
import Vue from 'vue'
import VueSocketIO from 'vue-socket.io'
import SocketIO from 'socket.io-client'
const options = {
extraHeaders: {"my-custom-header": 'abas'}
}
export default function({store}) {
Vue.use(new VueSocketIO({
debug: true,
connection: SocketIO('http://localhost:3001', options),
// connection: 'http://localhost:3001',
vuex: {
store,
actionPrefix: 'SOCKET_',
mutationPrefix: 'SOCKET_'
},
}))
}
got
Access to XMLHttpRequest at 'http://localhost:3001/socket.io/?EIO=4&transport=polling&t=NSYEGPU' from origin 'http://localhost:3000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource.
polling-xhr.js?d33e:202 GET http://localhost:3001/socket.io/?EIO=4&transport=polling&t=NSYEGPU net::ERR_FAILED
headers
Request URL: http://localhost:3001/socket.io/?EIO=4&transport=polling&t=NSYDVFS
Request Method: OPTIONS
Status Code: 400 Bad Request
Remote Address: [::1]:3001
Referrer Policy: no-referrer-when-downgrade
Connection: keep-alive
Content-Type: application/json
Date: Wed, 20 Jan 2021 23:51:37 GMT
Keep-Alive: timeout=5
Transfer-Encoding: chunked
Accept: */*
Accept-Encoding: gzip, deflate, br
Accept-Language: ru-RU,ru;q=0.9,en-US;q=0.8,en;q=0.7
Access-Control-Request-Headers: my-custom-header
Access-Control-Request-Method: GET
Connection: keep-alive
Host: localhost:3001
Origin: http://localhost:3000
Referer: http://localhost:3000/
Sec-Fetch-Dest: empty
Sec-Fetch-Mode: cors
Sec-Fetch-Site: same-site
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 OPR/73.0.3856.344
EIO: 4
transport: polling
t: NSYDVFS
Issue Analytics
- State:
- Created 3 years ago
- Comments:7
Top Results From Across the Web
Access to XMLHttpRequest has been blocked by CORS policy ...
Access to XMLHttpRequest has been blocked by CORS policy : No ' Access-Control-Allow-Origin ' header is present on the requested response.
Read more >Access to XMLHttpRequest at '...' from origin 'localhost:3000 ...
You can't really fetch data from servers, with a different hostname, that don't have a CORS policy to allow request from your domain....
Read more >Reason: CORS header 'Access-Control-Allow-Origin' missing
The response to the CORS request is missing the required Access-Control-Allow-Origin header, which is used to determine whether or not the ...
Read more >Access to XMLHttpRequest at 'http://localhost:3000 ... - GitHub
Access to XMLHttpRequest at 'http://localhost:3000/domains/xxx/records' from origin 'null' has been blocked by CORS policy: Request header field ...
Read more >Enable Cross-Origin Requests (CORS) in ASP.NET Core
There are three ways to enable CORS: In middleware using a named policy or default policy. Using endpoint routing. With the [EnableCors] ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I have solved the above problem by the following Source Code :
Server Side Code
// For Allowing Cross Site Origin Requests
var cors = require(‘cors’); const app = require(‘express’)();
app.use(cors());
const http = require(‘http’).Server(app); const io = require(‘socket.io’)(http,{ cors:{ origin:“http://localhost:8080”, methods: [“GET”,“POST”], credentials: true, allowEIO3: true }, transport: [‘websocket’] });
//Whenever someone connects this gets executed io.on(‘connection’, function(socket) { console.log(‘A user connected’);
//Whenever someone disconnects this piece of code executed socket.on(‘disconnect’, function () { console.log(‘A user disconnected’); }); });
http.listen(3000, function() { console.log(‘listening on *:3000’); });
Client Side Code
// Packages For Establishing Socket Connection import SocketIO from ‘socket.io-client’ import VueSocketIO from ‘vue-socket.io’
Vue.use(new VueSocketIO({ debug: true, connection: SocketIO(‘http://localhost:3000/’), vuex: { store, actionPrefix: ‘SOCKET_’, mutationPrefix: ‘SOCKET_’ }, extraHeaders: { ‘Access-Control-Allow-Credentials’:true }, allowEIO3:true }))
I passed a transports option like this using socket.io-client and it works.