When I try to send a POST request to the DJANGO app hosted on the server, with included credentials in the Axios request or with a Postman app, I cannot access cookies in the app, because cookies are never sent.
Axios config looks like this:
export function genericApiHost(host: string) {
const headers = {
"Content-Type": "application/json",
Accept: "application/json",
// "Access-Control-Allow-Origin": true,
};
return axios.create({
baseURL: `${host}`,
headers: headers,
withCredentials: true,
});
}
If I include the allow origin header I get a CORS error, otherwise, cookies are not sent.
This is part of the Django app settings:
CORS_ALLOW_ALL_ORIGINS = True
CORS_ALLOW_CREDENTIALS = True
CSRF_COOKIE_SECURE = False
CSRF_COOKIE_HTTPONLY = False
CSRF_TRUSTED_ORIGINS = ['*']
ALLOWED_HOSTS = ["*"]
With the settings I listed here, the application works correctly locally, but when the code is uploaded to the nginx server, it doesn't work
Based on the information you provided, it seems that you are having trouble accessing cookies in your Django app when sending a POST request with credentials. You mentioned that cookies are never sent, and you cannot access them. You also mentioned that if you include the allow origin header, you get a CORS error, and if you don't include it, cookies are not sent.
You have set
CORS_ALLOW_ALL_ORIGINS
andCORS_ALLOW_CREDENTIALS
toTrue
, andCSRF_COOKIE_SECURE
,CSRF_COOKIE_HTTPONLY
,CSRF_TRUSTED_ORIGINS
, andALLOWED_HOSTS
toFalse
,False
,['*']
, and["*"]
, respectively. These settings work correctly locally, but when you upload the code to the nginx server, it doesn't work.Based on your description, it seems that you are facing a CORS issue. The error message you mentioned indicates that the browser is blocking the cookie because of the SameSite attribute. This attribute is set to Lax by default, which prevents the cookie from being sent in a cross-site request. To resolve this issue, you need to update the attributes of the cookie. Here is an example of how to set the cookie in Django:
You can also try setting
CSRF_COOKIE_SECURE
andCSRF_COOKIE_HTTPONLY
toTrue
in your Django app settings. Additionally, you may want to check if your server has theAccess-Control-Allow-Origin
header set. If not, you can add it to your server configuration to allow cross-origin requests.