[TIL] react native ios HTTP 통신 해결

Dev_min·2023년 3월 6일
0

TIL

목록 보기
59/61

react native ios는 기본적으로 http통신이 되지 않는 이슈가 있다.
하지만, info.plist에 추가해주면 http통신이 가능하다.

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key> // <--  이부분 추가
    <true/>                           //  <-- 이부분 추가
    <key>NSExceptionDomains</key>
    <dict>
        <key>localhost</key>
        <dict>
            <key>NSExceptionAllowsInsecureHTTPLoads</key>
            <true/>
        </dict>
    </dict>
</dict>
profile
TIL record

0개의 댓글