2

HTTPS プロトコルで実行されているアプリケーションがあります。$http サービスを使用してデータを取得する Angular 関数を作成しました。

factory.loadImages = function(callback){

        $http.get("http://gainsight.0x10.info/api/image?page_no=0")
             .success(function(data){

                callback(data);

            }).error(function(status,error){

                console.log(status);

            });
    };

以下の混合コンテンツ エラーが発生します。

Mixed Content: The page at 'https://www.hackerearth.com/gainsight-ui-development-hiring-challenge-1/problems/30146b3bf6954bba9752bd5599b3c8aa/' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://gainsight.0x10.info/api/image?page_no=0'. This content should also be served over HTTPS.

今、私は残念ながら利用できない私のサービスでhttp://gainsight.0x10.info/api/image?page_no=0https://gainsight.0x10.info/api/image?page_no=0に変更しようとしました。$http.get

任意のヘルプ..大歓迎

4

2 に答える 2