Firebase Java客户端身份验证

时间:2014-11-04 21:03:27

标签: java api authentication client firebase

尝试创建独立的Java应用程序,但无法进行身份验证。

import com.firebase.client.*;

public class Main {

  public static void main(String[] args) {

    Firebase ref = new Firebase("https://myURL.firebaseio.com/");   
    ref.authAnonymously(new Firebase.AuthResultHandler() {

      @Override
      public void onAuthenticationError(FirebaseError arg0) {               
        System.out.println("Not Authenticated: " + arg0);               
      }

      @Override
      public void onAuthenticated(AuthData arg0) {
        System.out.println("Authenticated.");
      }
    });
  }
}

始终忘记以下身份验证错误:

    Not Authenticated: FirebaseError: There was an exception while connecting to the authentication server: Connection refused: connect

注意:

  1. 使用authWithPassword()
  2. 的结果相同
  3. 可以从命令行输入URL
  4. 在身份验证主机站点
  5. 上启用了匿名身份验证
  6. 来自网络应用的匿名身份验证工作
  7. 使用firebase-client-jvm-2.0.0.jar
  8. 有什么建议吗?

0 个答案:

没有答案