You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if this is the right place, but I can't seem to subscribe to Google Groups at the moment, so here I am.
I've got some code that I've run in a browser that captures a cookie and sends that as a header on subsequent requests, but it doesn't seem to be getting set when using envjs and Rhino. To be honest, I'm not sure if this is something from envjs or rhino which isn't working as I'd expect.
I managed to get the cookie set using this, but it'd be nice if the container handled that. Any ideas?
Hi,
Not sure if this is the right place, but I can't seem to subscribe to Google Groups at the moment, so here I am.
I've got some code that I've run in a browser that captures a cookie and sends that as a header on subsequent requests, but it doesn't seem to be getting set when using envjs and Rhino. To be honest, I'm not sure if this is something from envjs or rhino which isn't working as I'd expect.
I managed to get the cookie set using this, but it'd be nice if the container handled that. Any ideas?
Thanks
Robbie
jQuery.ajaxSetup({
'beforeSend': function(xhr) {
xhr.setRequestHeader("Cookie", sessionToken);
}
});
The text was updated successfully, but these errors were encountered: