Invoking third party url by http request is not working in Edge browser. Am using this code
$http({
url: url,
method: 'POST',
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Authorization':Authorization,
},
data: 'grant_type=client_credentials'
}).then(function (data, status, headers, config) {});