如何以编程方式生成指向 Firebase 中存储对象的动态链接


Google

IO 2016中引入的新版本Firebase引入了Firebase Dynamic Links(作为深度链接概念的扩展)以及Firebase Storage(由Google Cloud Storage提供支持)。

如何以编程方式生成指向 Firebase 存储对象的 Firebase 动态链接?

编辑-1

我知道我们可以使用以下代码获取保存存储对象的 Google Cloud Storage 存储桶以及存储桶中对象的完整路径

public String getDynamicLink(StorageReference storageReference)
{
    String dynamicLink = "";
    String bucket = storageReference.getBucket();
    String path = storageReference.getPath();
    // How to generate dynamic link using the bucket and path?
    return dynamicLink;
}

编辑-2

根据 https://cloud.google.com/storage/docs/collaboration#browser,您可以使用以下语法构造指向 Google Cloud Storage 对象的网址:

https://storage.cloud.google.com/<bucket>/<object>

如何使用它以编程方式生成动态链接?

终于明白了

使用存储桶名称和存储对象路径生成 Google 云存储对象网址,如问题中的编辑中所述。

然后,通过使用以下格式构造网址,以编程方式创建动态链接:

https://domain/?link=your_deep_link&apn=package_name[&amv=minimum_version][&ad=1][&al=android_link][&afl=fallback_link]

请看https://firebase.google.com/docs/dynamic-links/android#create-a-dynamic-link-programmatically 了解更多详情。

相关内容

  • 没有找到相关文章

最新更新