###わからないこと
以下のようにaxiosのget実行時にhttpsのAPIを叩いているのにhttpで呼び出されてしまい、以下のエラーが出ます
typescript
1const apiUrl = "https://hogehoge.com/api" 2axios.get(apiUrl, { 3 params:{ 4 device_number: deviceNumber //deviceNumberはuseStateで管理している値 5 } 6 }).then((response)=>{ 7 console.log(response.data) 8 })
Mixed Content: The page at 'https://hogehoge.com/hoge' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://hogehoge.com/api?device_number=0'. This request has been blocked; the content must be served over HTTPS.
###試したこと
調べたところ以下のような記事があったため試してみましたが、解決には至りませんでした。
https://qiita.com/ProjectEuropa/items/db71aa5658333abf967f
解決方法等ご存知の方いらっしゃいましたら教えていただきたいです。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー