일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- webhacking
- 백엔드
- mysql
- hackerschool
- 인공지능
- 러닝 스칼라
- Javascript
- Scala
- Shellcode
- backend
- ChatGPT
- Linux
- c
- php
- 웹해킹
- 딥러닝
- 파이썬
- BOF 원정대
- hackthissite
- 러닝스칼라
- 리눅스
- BOF
- 챗GPT
- Web
- c++
- flask
- hacking
- 경제
- deep learning
- Python
- Today
- Total
목록S3 (2)
jam 블로그
CORS (Cross Domain) 서버와의 통신을 위해 ajax나 XMLHttpRequest를 사용하다보면 CORS 에러가 나오는 경우가 종종 발생합니다. 할때마다 설정 방법이나 우회 방법을 항상 찾다보니 매번 고생하는거 같아 정리해봅니다. CORS 란? CORS는 Cross-Origin Resource Sharing의 약자로 보안상의 이유로, 브라우저들은 스크립트 내에서 초기화되는 cross-origin HTTP 요청을 제한합니다. 예를 들면 다음과 같습니다. # 사이트 도메인이 www.a.com 일 경우 const xhr = new XMLHttpRequest(); xhr.onreadystatechange = () => { if (xhr.readyState === xhr.DONE) { if (xhr...
If your mp4 video file upload in amazon s3, that file's Content-type is "application/octet-stream".So, you have to change from "application/octet-stream" to "video/mp4". (There is option in meta data category.) If there are a few video file in amazon s3, you just delete and add content-type, but if there are too many video file, this site link of under can be help for you. https://foliovision.co..