无法从FireBase

时间:2017-07-21 12:31:56

标签: android firebase firebase-storage

我正在尝试使用Firebase下载pdf文件。每当我单击应该启动下载的项目时,下载都会失败。 我在日志监视器中收到此消息: -

发生了StorageException。用户无权访问此对象。代码:-13021 HttpResult:403

我在Firebase控制台中的读/写权限如下所示: -

service firebase.storage {
  match /b/savephoto-a1cc3.appspot.com/o {
    match /{allPaths=**} {
      // Allow access by all users
      allow read, write;
    }
  }
}

我下载文件的java代码也是这样的

FirebaseStorage storage = FirebaseStorage.getInstance();
StorageReference storageRef = storage.getReference();
StorageReference islandRef = storageRef.child("CSD-101").child("Midsems").child("2016").child("CSD101_MidSem.pdf");

File rootPath = new File(Environment.getExternalStorageDirectory(), "Question Papers");
if(!rootPath.exists()) {
    rootPath.mkdirs();
}

final File localFile = new File(rootPath,"CSD-101 Midsems.pdf");

islandRef.getFile(localFile).addOnSuccessListener(new OnSuccessListener<FileDownloadTask.TaskSnapshot>() {
    @Override
    public void onSuccess(FileDownloadTask.TaskSnapshot taskSnapshot) {
        Toast.makeText(Year2.this, "File Downloaded", Toast.LENGTH_SHORT).show();
    }
}).addOnFailureListener(new OnFailureListener() {
    @Override
    public void onFailure(@NonNull Exception e) {
        Toast.makeText(Year2.this, "Download Failed", Toast.LENGTH_SHORT).show();
    }
});

我该怎么办?

1 个答案:

答案 0 :(得分:0)

您应该使用此代码更新您的firebase控制台规则

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