无法使用URL连接到Firebase数据库

时间:2017-02-28 20:23:56

标签: android json firebase firebase-realtime-database android-volley

我正在尝试将我的应用程序连接到云数据库,但我总是得到一个错误响应,我不知道我得到的错误是什么,我仍然是Android开发的新手,这是我的代码连接到我的在线数据库,即Firebase:

private void connectServer(){

    progressBar.setVisibility(View.VISIBLE);



    String url = "https://rabaapps.firebaseio.com/";
    Log.e("url", url);

    mQueue = CustomVolleyRequestQueue.getInstance(this).getRequestQueue();


    final CustomJSONObjectRequest jsonRequest = new CustomJSONObjectRequest(Request.Method.GET, 
            url, new JSONObject(), this, this);


    mQueue.add(jsonRequest);

}

0 个答案:

没有答案