2016-10-23 2 views
0

현재 Ionic app에서 작업 중입니다. Firebase의 콘텐츠가 iOS 10에서로드되는 것을 멈 춥니 다. 저는 AngularFire 1.2.0과 Firebase 2.4.2를 사용하고 있습니다. 나는 반복Firebase 컨텐트가 ios 10 - ionic app에 로딩되지 않습니다.

[Error] Failed to load resource: An SSL error has occurred and a secure connection to the server cannot be made. (.lp, line 0) 

을이 오류를 받고 있어요 때문에 나는 그래서 난 내 index.html 해당 메타 태그에 추가하지만 여전히 작동하지 않는 새로운 콘텐츠 보안 정책을 찾고 있었어요. 헤로 쿠의 다른 앱과의 연결은 정상적으로 작동합니다. 내가 누락 된 것을 모른다.

<meta http-equiv="Content-Security-Policy" 
     content="default-src 'self' gap://ready file://* *; 
     script-src 'self' 'unsafe-inline' 'unsafe-eval' 
     127.0.0.1:* 
     https://*.herokuapp.com/ 
     https://*.firebaseio.com/; 
     style-src 'self' 'unsafe-inline' 
     127.0.0.1 
     https://*.herokuapp.com/ 
     https://*.firebaseio.com/; 
     connect-src 'self' 'unsafe-inline' 'unsafe-eval' 
     127.0.0.1:* 
     https://*.herokuapp.com/ 
     https://*.firebaseio.com/"> 

답변

관련 문제