[알게된 것] React Native WebView VideoJS the media could not be loaded

Chobby·2024년 5월 22일
1

알게된 것

목록 보기
52/62

😀문제상황

WebView를 통한 웹 조회 시, 비디오 플레이어에서 the media could not be loaded 에러 발생

😁해결과정

  1. iOS 사파리 브라우저로 같은 사이트에서 확인시, 정상적으로 미디어가 노출됨을 확인
    1-1. 웹 페이지 및 미디어 플레이어의 문제는 아님을 확인
  2. 미디어 플레이어의 src 확인 및 info.plist에 http 필터링 되지 않도록 설정
  3. 해결

😂해결방안

# info.plist
<key>NSAppTransportSecurity</key>
	<dict>
		<key>NSAllowsArbitraryLoads</key>
		<true/>
		<key>NSExceptionDomains</key>
        <dict>
            <key>!!!!!!!!!!URL!!!!!!!!!!</key>
            <dict>
                <key>NSExceptionAllowsInsecureHTTPLoads</key>
				<true/>
				<key>NSIncludesSubdomains</key>
				<true/>
            </dict>
			<key>!!!!!!!!!!URL!!!!!!!!!!</key>
			<dict>
				<!-- HTTP 연결 허용 -->
				<key>NSExceptionAllowsInsecureHTTPLoads</key>
				<true/>
				<!-- 서브 도메인 포함 -->
				<key>NSIncludesSubdomains</key>
				<true/>
				<!-- 모든 써드파티 도메인에 대해 HTTP 연결 허용 (선택사항) -->
				<key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
				<true/>
			</dict>
profile
내 지식을 공유할 수 있는 대담함

0개의 댓글