소프트웨어에 대한 모든 것

Mixed content 문제 해결(https 사이트에서 http 사이트 요청 시 발생하는 보안 문제) 본문

WEB

Mixed content 문제 해결(https 사이트에서 http 사이트 요청 시 발생하는 보안 문제)

앤테바 2021. 1. 14. 22:42
반응형

https 사이트에서 ajax를 사용해서 비동기로 http 사이트에 request를 요청해서 문제가 발생 했습니다. 암호화된 HTTPS 기반의 사이트에서 암호화되지 않은 HTTP 사이트에 요청을 보내서 Mixed content 에러가 발생한 것입니다.

Mixed content 에러 발생

Mixed Content: The page at 'https://plprice.netlify.app/' was loaded over HTTPS, 
but requested an insecure script 
'http://api.vworld.kr/req/search?service=search&version=2.0&request=search&format=json&type=ADDRESS&category=PARCEL&query=%EB%B4%89%EB%82%A8%EB%A6%AC%20720-9&callback=jQuery351016469620631517623_1610625986322&_=1610625986323'. 
This request has been blocked; the content must be served over HTTPS.

Mixed content 에러 해결

html파일 head에 추가

<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">

출처 : stackoverflow.com/questions/35178135/how-to-fix-insecure-content-was-loaded-over-https-but-requested-an-insecure-re

 

How to fix "insecure content was loaded over HTTPS, but requested an insecure resource"

This URL: https://steakovercooked.com/wedding/schedule-wedding-ceremony/ I can't find the insecure content and the Chrome keeps complaining, Any ideas?

stackoverflow.com

 

반응형
Comments