바르고 뜨겁게
IOS domain request network error 본문
IOS에서 IP 주소로 HTTP 요청시 정상 동작하지만, 특정 도메인으로 HTTP 요청시 network error 가 발생하는 경우가 있다.
그 경우 Info.plist
에 아래 코드를 추가해주면 된다.
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSAllowsArbitraryLoadsInWebContent</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>[ 도메인 주소 (right-hot.tistory.com) ]</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
'자바스크립트 > React Native' 카테고리의 다른 글
React Native - Error: spawn ./gradlew EACCES (0) | 2020.10.27 |
---|---|
React Native A4 Size Print View (0) | 2020.09.16 |
[React Naitve] Axios multipart image upload network error (0) | 2020.08.09 |
[React native] FlatList with large content rows will crash only on iOS physical device (0) | 2020.07.28 |
[ERROR] xcodebuild DTDeviceKit: deviceType from was NULL (0) | 2020.06.03 |
Comments