Firebase REST-API 以创建具有 iOS 最低版本的短动态链接
Firebase REST-API to create shorted dynamic-links with iOS minimum version
我正在使用 Firebase 在后端生成动态链接。
我需要生成短链接,所以我按照文档中的建议使用了这种方法:
https://firebase.google.com/docs/reference/dynamic-links/link-shortener
我注意到,在此文档中,没有指定 iOS 应用程序的最低版本的参数(类似于“androidMinPackageVersionCode
”)。
这很奇怪,因为使用手动方法可能会出现这种接缝:https://firebase.google.com/docs/dynamic-links/create-manually
imv: The version number of the minimum version of your app that can
open the link. This flag is passed to your app when it is opened, and
your app must decide what to do with it.
文件有误?
这是一个已知的功能请求。唯一的解决方法是在长 link manually and creating a short Firebase Dynamic Link using a long link.
中添加 imv
我正在使用 Firebase 在后端生成动态链接。
我需要生成短链接,所以我按照文档中的建议使用了这种方法:
https://firebase.google.com/docs/reference/dynamic-links/link-shortener
我注意到,在此文档中,没有指定 iOS 应用程序的最低版本的参数(类似于“androidMinPackageVersionCode
”)。
这很奇怪,因为使用手动方法可能会出现这种接缝:https://firebase.google.com/docs/dynamic-links/create-manually
imv: The version number of the minimum version of your app that can open the link. This flag is passed to your app when it is opened, and your app must decide what to do with it.
文件有误?
这是一个已知的功能请求。唯一的解决方法是在长 link manually and creating a short Firebase Dynamic Link using a long link.
中添加imv