我花了几分钟查看了Github上的Firebase iOS SDK代码,但我无法将Firebase Dynamic Links如何在应用程序安装后幸存下来。似乎使用了某种类型的指纹识别。我不确定是否使用:
答案 0 :(得分:1)
答案似乎在iOS SDK FIRDLDefaultRetrievalProcessV2.m文件中的注释中:
// Reason for this string to ensure that only FDL links, copied to clipboard by AppPreview Page
// JavaScript code, are recognized and used in copy-unique-match process. If user copied FDL to
// clipboard by himself, that link must not be used in copy-unique-match process.
// This constant must be kept in sync with constant in the server version at
// durabledeeplink/click/ios/click_page.js
然后,SDK使用UIPasteboard读取剪贴板。