CORS cookies dont sended with this options.
Vue.http.options.credentials = true
Vue.http.options.xhr = {withCredentials: true}
second this.
I have also issues with sending CORS cookies
I use 'interceptors' to set all pre-requests, current it's work
Example:
~
Vue.http.interceptors.push((request, next) => {
request.credentials = true;
next();
});
~
Vue.http.interceptors.push((request, next) => {
request.credentials = true;
next();
});
is right
Most helpful comment
I use 'interceptors' to set all pre-requests, current it's work
Example:
~Vue.http.interceptors.push((request, next) => {
request.credentials = true;
next();
});
~