I need to send GET request on https url with "Authorization" header. I try to do this using this code:
request.get({
url: url,
headers: {
'Authorization': token,
'abc': 'def'
}
})
On server side I get "abc" header, but there is no Authorization header. Why does it happen?