我正在尝试将我的应用程序连接到云数据库,但我总是得到一个错误响应,我不知道我得到的错误是什么,我仍然是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);
}