Ich habe ein Setup mit
Frontend-Server (Node.js, Domäne: localhost: 3000) <---> Backend (Django, Ajax, Domäne: localhost: 8000)
Browser <- webapp <- Node.js (App bereitstellen)
Browser (Webapp) -> Ajax -> Django (Ajax-POST-Anfragen bedienen)
Mein Problem hier ist das CORS-Setup, mit dem die Webanwendung Ajax-Aufrufe an den Back-End-Server ausführt. In Chrom bekomme ich immer
In Access-Control-Allow-Origin kann kein Platzhalter verwendet werden, wenn das Flag für Anmeldeinformationen wahr ist.
funktioniert auch nicht mit Firefox.
Mein Node.js-Setup lautet:
var allowCrossDomain = function(req, res, next) {
res.header('Access-Control-Allow-Origin', 'http://localhost:8000/');
res.header('Access-Control-Allow-Credentials', true);
res.header('Access-Control-Allow-Methods', 'GET,PUT,POST,DELETE');
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept");
next();
};
Und in Django verwende ich diese Middleware zusammen mit dieser
Die Webanwendung stellt Anfragen als solche:
$.ajax({
type: "POST",
url: 'http://localhost:8000/blah',
data: {},
xhrFields: {
withCredentials: true
},
crossDomain: true,
dataType: 'json',
success: successHandler
});
Die von der Webanwendung gesendeten Anforderungsheader sehen also folgendermaßen aus:
Access-Control-Allow-Credentials: true
Access-Control-Allow-Headers: "Origin, X-Requested-With, Content-Type, Accept"
Access-Control-Allow-Methods: 'GET,PUT,POST,DELETE'
Content-Type: application/json
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Cookie: csrftoken=***; sessionid="***"
Und hier ist der Antwortheader:
Access-Control-Allow-Headers: Content-Type,*
Access-Control-Allow-Credentials: true
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: POST,GET,OPTIONS,PUT,DELETE
Content-Type: application/json
Wo gehe ich falsch?!
Edit 1: Ich habe verwendet chrome --disable-web-security
, möchte aber jetzt, dass die Dinge tatsächlich funktionieren.
Edit 2: Antwort:
Also, Lösung für mich django-cors-headers
config:
CORS_ORIGIN_ALLOW_ALL = False
CORS_ALLOW_CREDENTIALS = True
CORS_ORIGIN_WHITELIST = (
'http://localhost:3000' # Here was the problem indeed and it has to be http://localhost:3000, not http://localhost:3000/
)
http
, es ist der /
am Ende. Ich nehme an, das Weglassen von http könnte funktionieren, aber ich habe einige Jahre nicht wirklich an diesem Zeug gearbeitet, also weiß ich nicht wirklich, was jetzt funktioniert!