Browser Refuses to Honor Set-Cookie Header from Cross-Origin Response
Problem:
An application struggles to set and retain an HTTP cookie sent from the backend to the front end.
Specifics:
Resolution:
The error lies in the placement of withCredentials in the Axios request configuration. withCredentials is a property of the request, not a request header. To resolve the issue, it should be moved from the headers object to the top-level configuration object.
Corrected Code:
const axiosAuth = axios.create({ validateStatus: (status: number) => { return status >= 200 && status < 300; }, headers: { Accept: `application/json`, 'Content-Type': 'application/json', }, withCredentials: true, });
By using withCredentials: true in the configuration object, Axios will automatically handle the cross-origin cookie setting and retrieval.
The above is the detailed content of Why Isn\'t My Browser Setting Cookies from Cross-Origin Responses?. For more information, please follow other related articles on the PHP Chinese website!