Firebase 权限被拒绝错误 [英] Firebase Permission denied Error

查看:38
本文介绍了Firebase 权限被拒绝错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是 firebase 的初学者,并试图从我的数据库中获取价值.

I am Very beginner to firebase and trying to get value from my database.

但它每次都显示相同的错误.

but it showing me same error every time.

    W/SyncTree: Listen at /child failed: FirebaseError: Permission denied

我的 Firebase 规则

My firebase rules

    {
  "Condition" : "sunny",
  "child" : 5
}

我的 Androidmanifest.xml

my Androidmanifest.xml

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.mohit.firebase" >

    <uses-permission android:name="android.permission.INTERNET" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        >
        <activity android:name=".MainActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

我的 mainactivity.java包 com.mohit.firebase;

My mainactivity.java package com.mohit.firebase;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

import com.firebase.client.DataSnapshot;
import com.firebase.client.Firebase;
import com.firebase.client.FirebaseError;
import com.firebase.client.ValueEventListener;

public class MainActivity extends AppCompatActivity {

    TextView tv;
    Button bt1;
    Button bt2;
    Firebase mRootRef;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        tv = (TextView) findViewById(R.id.button);
        bt1 = (Button) findViewById(R.id.button);
        bt2 = (Button) findViewById(R.id.button2);
        Firebase.setAndroidContext(this);
        mRootRef = new Firebase("https://superb-flag-126719.firebaseio.com/");
        Log.d("fb","Firebase Object: "  + String.valueOf(mRootRef));

    }

    @Override
    protected void onStart() {
        super.onStart();

        Firebase mchild = mRootRef.child("child");
        mchild.addValueEventListener(new ValueEventListener() {
            @Override
            public void onDataChange(DataSnapshot dataSnapshot) {
                String condition = (String) dataSnapshot.getValue();
                Log.d("fb","String get: " + condition);
                tv.setText(condition);
            }

            @Override
            public void onCancelled(FirebaseError firebaseError) {

            }
        });
    }
}

我的 BuildGraddle

my BuildGraddle

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.mohit.firebase"
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    packagingOptions {
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE-FIREBASE.txt'
        exclude 'META-INF/NOTICE'
    }
}


dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.firebase:firebase-client-android:2.5.2+'
}

我检查了我的 firebase 网址.完全正确.

i checked my firebase url. It's Perfectly Correct.

推荐答案

因为您没有获得数据库的授权,请检查实时数据库中的规则选项卡

It's because you are not authorized to the Database, check the Rules Tab in the Realtime database

如果是

{
  "rules": {
    ".read": "auth != null",
    ".write":"auth != null"
  }
}

这意味着只有授权用户才能写入和读取数据.

This means only authorized user's can write and read the Data.

更改为

{
  "rules": {
    ".read": true,
    ".write":true
  }
}

允许任何人编写数据库

在进行生产时一定要使用第一个

这篇关于Firebase 权限被拒绝错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆