il mio scenario è composto da due server web uno locale e uno remoto.Access-Control-Allow-Origin angularjs su php
Il server Web locale (Apache) elabora un'app Web in cui voglio effettuare una richiesta Ajax al server Web remoto (Lighttpd).
Ajax richiesta uso angularjs $ http.
var req = {
method: 'POST',
url: 'http://url/myphp.php',
headers: {
'Authorization': 'Basic ' + btoa('username:password'),
'Content-Type': 'application/x-www-form-urlencoded'
},
xhrFields: {
withCredentials: true
},
crossDomain: true,
data: xmlString
}
$http(req).then(function() {
console.log("OK!");
});
script php remoto è:
<?php
echo "You have CORS!";
?>
Purtroppo ho avuto un
401 Unhauthorized
XMLHttpRequest cannot load http://url/myphp.php. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8888' is therefore not allowed access. The response had HTTP status code 401.
server Web remoti, ha Htpasswd modalità di autenticazione e abilitazione richiesta CORS configurato.
seguire un pezzo di lighttpd.conf
setenv.add-response-header = ("Access-Control-Allow-Origin" => "*")
Quale browser stai usando @gravi? – noahdotgansallo
Sia Chrome che Firefox – gravi
Ho avuto lo stesso problema e, a quanto pare, Chrome ha risolto tutti questi tipi di richieste, nonostante le intestazioni – noahdotgansallo