There is a http call being made from my AngularJS application. I'm uncertain about the protocol used by the target website. Therefore, I need to determine whether the target site uses HTTP or HTTPS. Below is a snippet of my code.
var Path12 = "https://ABC.azurewebsites.net/XYZPage/XYZ_FUNCTION";
$http.get(Path12).success(function (data, status, headers, config) {
var abc = "";
var pqr = "";
}).error(function (data, status, headers, config) { });
I require assurance on whether ABC.azurewebsites.net operates using HTTP or HTTPS.