Answers for "where to add access-control-allow-origin"

PHP
2

php access origin

<?php
 header("Access-Control-Allow-Origin: *");
Posted by: Guest on July-30-2020
0

access-control-allow-origin

app.use(function(req, res, next) {
  res.header("Access-Control-Allow-Origin", "*");
  res.header("Access-Control-Allow-Headers", "X-Requested-With");
  next();
  });
Posted by: Guest on June-15-2021
0

cors Access-Control-Allow-Origin cor

// Add headers
app.use(function (req, res, next) {

    // Website you wish to allow to connect
    res.setHeader('Access-Control-Allow-Origin', 'http://localhost:8888');

    // Request methods you wish to allow
    res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE');

    // Request headers you wish to allow
    res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type');

    // Set to true if you need the website to include cookies in the requests sent
    // to the API (e.g. in case you use sessions)
    res.setHeader('Access-Control-Allow-Credentials', true);

    // Pass to next layer of middleware
    next();
});
Posted by: Guest on June-14-2021
0

header access-control particular domain

Access-Control-Allow-Origin: http://siteA.com
Posted by: Guest on June-27-2020

Code answers related to "where to add access-control-allow-origin"

Browse Popular Code Answers by Language