Answers for "Add Access-Control-Allow-Origin html"

2

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
-1

Add Access-Control-Allow-Origin html

<?php
header("Access-Control-Allow-Origin: *");
...
?>
Posted by: Guest on April-01-2022

Code answers related to "Add Access-Control-Allow-Origin html"

Browse Popular Code Answers by Language