티스토리 뷰
개발/개발 자료
(Object-C) App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.
시원한물냉 2017. 4. 4. 16:05
App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.
라는 메세지와함께 통신이 안되는 경우의 처리방법
우선 간단한 원인으로는 애플에서 http와의 통신을 보안의 이유로 금지시켰다!! https와의 통신을 권장하는것.
해결방법은
1. 애플이 원하는 https의 서버를 구축하는것.
혹은..
Info.plist를 수정하여 통신이 가능하도록 해줍니다.
소스에서 info.plist열기
Info.plist 우클릭 > Open As > Source Code
여기에 소스를 추가해줄까 합니다.
아무대나 이 소스를 가져다 붙여주세요.
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>DOMAIN_ADDRESS</key>
</dict>
</dict>
'개발 > 개발 자료' 카테고리의 다른 글
(Android) 이미지 회전시키지 (0) | 2017.08.13 |
---|---|
(MySQL) 현재 상태 확인하는 명령어 (현재 connection개수 확인 등) (0) | 2017.08.09 |
(Obejct-C) 생명주기에 따른 실행 함수 (0) | 2017.04.04 |
(Node.js) Session store - mysql (0) | 2017.04.03 |
(node.js) Error: spawn ENOENT 이미지 업로드 오류 (0) | 2017.03.24 |
댓글