APIアクセスHTML / Javascriptの問題
1 回答
- 投票
混合コンテンツエラーが発生しました.リクエストはhttpとhttpsを混在させることはできません.すべて同じである必要があり、できればhttpsである必要があります.const url = 'http://api6.tzscan.io/v3/supply';
をhttp s
const url = 'https://api6.tzscan.io/v3/supply';
fetch(url)
.then(resp => resp.json())
.then(({dls}) => {
let span = createNode('span');
span.innerHTML = dls;
append(ul, span);
})
.catch(console.log);
You've encountered a mixed content error. Requests can't be a mixture of http and https, they need to be all of the same, preferably https. Just change the const url = 'http://api6.tzscan.io/v3/supply';
to be https
const url = 'https://api6.tzscan.io/v3/supply';
fetch(url)
.then(resp => resp.json())
.then(({dls}) => {
let span = createNode('span');
span.innerHTML = dls;
append(ul, span);
})
.catch(console.log);
Tzscan APIからデータをリクエストして、JavaScriptを使用して循環供給を取得しようとすると問題が発生します:
循環供給を要求するHTMLコード:
APIからデータを取得するためのJavascriptコード:
問題は、HTMLファイルをローカルで作成しても、オンラインでは機能しないことです. .