s3 버킷에 파일을 올리는데 이미지는 문제 없는데, 영상 파일은 자꾸
Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource... 관련 에러를 뿜어서...
기존 cors configuration에서 아래를 추가하니 문제 해결!!
<ExposeHeader>ETag</ExposeHeader>
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>PUT</AllowedMethod>
<AllowedMethod>POST</AllowedMethod>
<AllowedHeader>*</AllowedHeader>
<ExposeHeader>ETag</ExposeHeader>
</CORSRule>
</CORSConfiguration>
'프로그래밍 > Javascript' 카테고리의 다른 글
firebase 정리 (0) | 2018.05.09 |
---|---|
인터넷익스플로러 버전 알아내기 (0) | 2015.05.30 |
Uncaught SyntaxError: Unexpected token o (0) | 2015.05.27 |
안드로이드 웹뷰에서 자바스크립트로 안드로이드 메서드 호출하기 (0) | 2014.12.03 |
ajax error 메시지 출력하기 (0) | 2014.11.27 |
IE9 이상으로 브라우저를 업그레이드하거나, 크롬, 파이어폭스 등 최신 브라우저를 이용해주세요.