- 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;
}
}
}
我的 javacode 看起来像这样:
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 错误,并且应用程序崩溃了。 consol 告诉我这是 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
}
});
}
这将返回一个不可猜测的公共(public)下载 URL。如果你刚刚上传了一个文件,这个public url将在上传成功的回调中(上传后你不需要调用另一个异步方法)。
但是,如果您只需要引用的 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/51805672/
我是一名优秀的程序员,十分优秀!