Skip to content

Instantly share code, notes, and snippets.

@deptno
Created April 23, 2015 20:49
Show Gist options
  • Save deptno/46af1ec06f9e9ded9832 to your computer and use it in GitHub Desktop.
Save deptno/46af1ec06f9e9ded9832 to your computer and use it in GitHub Desktop.
[js] request HEAD
if (!jQuery) {
throw 'need jQuery';
}
!(function(url, header) {
$.ajax({
type: 'head',
url: url,
headers: header,
success: function(str, num, xhr) {
console.log('success');
debugger;
},
error: function(error) {
console.log('error');
debugger;
}
});
})('https://auth.fvcmd.test/cert', {
'Accept': 'application/vnd.fvc.v1+xml',
'Access-Control-Request-Headers': 'x-auth-timestamp'
});
//'https://auth-ctv.cp-test.digitaluk.co.uk';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment