I have HTTP GET/POST request where I need to pass 2 headers ( id and secret).Whenever I am trying access this resource from IE, it always fail with error message
SEC7123: Request header secret was not present in the Access-Control-Allow-Headers list.
However this works perfectly fine when I am trying access from Mozilla/Chrome. Also if I pass only one header in place of 2, this request goes through.
headers: {
'Content-Type':'application/x-www-form-urlencoded',
'Id': '**************************',
'Secret':'428******723989'
}
Can somebody help us ?