作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试获取 Firebase 存储桶中文件的“长期持久下载链接”。我已将其权限更改为
service firebase.storage {
match /b/project-xxx.appspot.com/o {
match /{allPaths=**} {
allow read, write;
}
}
}
我的java代码如下所示:
private String niceLink (String date){
String link;
// Points to the root reference
StorageReference storageRef = FirebaseStorage.getInstance().getReference();
StorageReference dateRef = storageRef.child("/" + date+ ".csv");
link = dateRef.getDownloadUrl().toString();
return link;
}
当我运行这个时,我得到的 uri 链接看起来像com.google.android.gms.tasks.zzh@xxx
问题 1. 我可以从中获取类似于以下内容的下载链接: https://firebasestorage.googleapis.com/v0/b/project-xxxx.appspot.com/o/20-5-2016.csv?alt=media&token=b5d45a7f-3ab7-4f9b-b661-3a2187adxxxx
当尝试获取上面的链接时,我在返回之前更改了最后一行,如下所示:
private String niceLink (String date){
String link;
// Points to the root reference
StorageReference storageRef = FirebaseStorage.getInstance().getReference();
StorageReference dateRef = storageRef.child("/" + date+ ".csv");
link = dateRef.getDownloadUrl().getResult().toString();
return link;
}
但是在执行此操作时,我收到 403 错误,并且应用程序崩溃了。控制台告诉我这是 bc 用户未登录/auth。“请先登录,然后再请求 token ”
问题 2.我该如何解决这个问题?
最佳答案
请引用documentation for getting a download URL .
当您调用 getDownloadUrl()
时,该调用是异步的,您必须订阅成功回调才能获取结果:
// Calls the server to securely obtain an unguessable download Url
private void getUrlAsync (String date){
// Points to the root reference
StorageReference storageRef = FirebaseStorage.getInstance().getReference();
StorageReference dateRef = storageRef.child("/" + date+ ".csv");
dateRef.getDownloadUrl().addOnSuccessListener(new OnSuccessListener<Uri>()
{
@Override
public void onSuccess(Uri downloadUrl)
{
//do something with downloadurl
}
});
}
这将返回一个公开的、不可猜测的下载 URL。如果您刚刚上传了文件,则此公共(public)网址将出现在上传成功的回调中(上传后无需调用其他异步方法)。
但是,如果您想要的只是引用的 String
表示形式,则只需调用 .toString()
// Returns a Uri of the form gs://bucket/path that can be used
// in future calls to getReferenceFromUrl to perform additional
// actions
private String niceRefLink (String date){
// Points to the root reference
StorageReference storageRef = FirebaseStorage.getInstance().getReference();
StorageReference dateRef = storageRef.child("/" + date+ ".csv");
return dateRef.toString();
}
关于java - 如何从 Firebase 存储获取 URL getDownloadURL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59514324/
我是一名优秀的程序员,十分优秀!