Created
April 23, 2015 20:49
-
-
Save deptno/46af1ec06f9e9ded9832 to your computer and use it in GitHub Desktop.
[js] request HEAD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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