2015-06-19 96 views
2

不工作這是一個在Web瀏覽器工作正常,但是當我試圖通過電子郵件&密碼登錄我得到的錯誤:離子-firebase電子郵件和密碼登錄Android中

無法聯繫火力地堡服務器

我這是怎麼登錄:

var auth = $firebaseAuth(firebaseMainRef); 

      auth.$authWithPassword({ email : email, password : password }) 

我用:Firebase v2.0.5

這是confif.xml文件:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?> 
<widget id="com.ionicframework.myapp501948" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> 
    <name>myApp</name> 
    <description> 
     An Ionic Framework and Cordova project. 
    </description> 
    <author email="[email protected]" href="http://ionicframework.com/"> 
     Ionic Framework Team 
    </author> 
    <content src="index.html"/> 
    <access origin="*"/> 
    <preference name="webviewbounce" value="false"/> 
    <preference name="UIWebViewBounce" value="false"/> 
    <preference name="DisallowOverscroll" value="true"/> 
    <preference name="BackupWebStorage" value="none"/> 
    <feature name="StatusBar"> 
    <param name="ios-package" value="CDVStatusBar" onload="true"/> 
    </feature> 
</widget> 

的感謝!

回答

1

添加白名單的cordova插件可解決問題

相關問題