Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- binary search
- 파이썬알고리즘풀기
- python sorted
- 파이썬 릿코드
- leetcode풀기
- python 알고리즘
- python Leetcode
- 알고리즘풀이
- 릿코드풀기
- 파이썬 알고리즘
- 코틀린기초
- python xor
- 파이썬 알고리즘 풀기
- 파이썬릿코드
- 파이썬알고리즘
- python priority queue
- 상가수익률계산기
- LeetCode
- 릿코드 파이썬
- 릿코드
- 파이썬 프로그래머스
- 릿코드풀이
- 릿코드 풀기
- python zip_longest
- 잇츠디모
- leetcode풀이
- python 릿코드
- 알고리즘풀기
- leetcode 풀기
- 파이썬릿코드풀기
Archives
- Today
- Total
소프트웨어에 대한 모든 것
Mixed content 문제 해결(https 사이트에서 http 사이트 요청 시 발생하는 보안 문제) 본문
반응형
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">
반응형
'WEB' 카테고리의 다른 글
html input 태그에 숫자를 comma로 구분해서 표시 (0) | 2021.01.19 |
---|---|
Ajax로 GET 방식 요청 시 CORS 정책 문제 해결(교차출처리소스공유 문제) (0) | 2021.01.14 |
jQuery를 html에 셋팅하기 (손쉬운 jQuery 셋업) (0) | 2021.01.14 |
구글 페이지 스피드 인사이트 사용 (google PageSpeed Insights) (0) | 2021.01.13 |
사이트맵 만들기 (0) | 2021.01.12 |
Comments