I'm using a Web RestFUL API from my client in AngularJS.
app.controller('LoginController', [
'$http',
'$cookies',
function($http, $cookies) {
this.credentials = {};
this.http = $http;
this.login = function() {
console.log(this.credentials);
var authdata = btoa(
this.credentials.username +
':' +
this.credentials.password
);
$http.defaults.headersmon['Authorization'] = 'Basic ' + authdata;
console.log($http);
var res = $http.post("http://API_NAME/library");
res.success(function(data, status, header){
alert('Successfull func');
console.log($cookies.get('JSESSIONID'));
});
res.error(function(data, status, headers, config) {
console.log('Error Log');
});
};
},
]);
Then, i have this Http headers Response
Set-Cookie:JSESSIONID=azekazEXAMPLErezrzez; Path=/; HttpOnly
I'm using ngCookies to get the JSESSIONID value and then create it manually in my browser, but i can't access it.
I already saw all the posts about this in StackOverflow, but they are deprecated or pletely unclear.
Thanks for your interest and help.
I'm using a Web RestFUL API from my client in AngularJS.
app.controller('LoginController', [
'$http',
'$cookies',
function($http, $cookies) {
this.credentials = {};
this.http = $http;
this.login = function() {
console.log(this.credentials);
var authdata = btoa(
this.credentials.username +
':' +
this.credentials.password
);
$http.defaults.headers.mon['Authorization'] = 'Basic ' + authdata;
console.log($http);
var res = $http.post("http://API_NAME/library");
res.success(function(data, status, header){
alert('Successfull func');
console.log($cookies.get('JSESSIONID'));
});
res.error(function(data, status, headers, config) {
console.log('Error Log');
});
};
},
]);
Then, i have this Http headers Response
Set-Cookie:JSESSIONID=azekazEXAMPLErezrzez; Path=/; HttpOnly
I'm using ngCookies to get the JSESSIONID value and then create it manually in my browser, but i can't access it.
I already saw all the posts about this in StackOverflow, but they are deprecated or pletely unclear.
Thanks for your interest and help.
Share Improve this question edited Feb 16, 2018 at 15:27 Orelsanpls 23.6k7 gold badges46 silver badges73 bronze badges asked Oct 7, 2015 at 11:19 Louis LecocqLouis Lecocq 1,8143 gold badges18 silver badges40 bronze badges 2- Why do you need to access JSESSIONID in Angular? That cookie is marked as HttpOnly, i.e. it can not be accessed in JS. – Pavel Horal Commented Oct 7, 2015 at 11:21
- I didn't get that the send of the cookie JSESSIONID was automatically handled. I thought i had to do it manually. Comments helped me to understand this. Problem Solve – Louis Lecocq Commented Oct 7, 2015 at 11:45
1 Answer
Reset to default 8You can't get HttpOnly cookies with JavaScript. That is the whole purpose of the HttpOnly flag.
That said, you shouldn't need to. The cookie should be sent automatically with any request to the same server. If you are dealing with cross-origin XHR requests, set your_XHR_instance.withCredentials
to true
to include cookies.