JSONP request fails when https is used instead of http
问题 I have an API client which makes a JSONP request using JQuery. Everything works fine when this API client's not using SSL however fails when the SSL is used. For example I have a URL http://apiclient.com and I am making following JSONP request from this domain: $.ajax({ url: url, dataType: "jsonp", contentType: "application/json; charset=utf-8", success: function(data) { $.each(data.services, function(index, service) { processService(service); }); } }); I see an appropriate request made to