4

在我的 iOS 项目中,我已经为 firebase 应用内消息设置了所有依赖项,并且在按钮上单击我需要将用户带到网页。

根据需要在设备中收到横幅和消息,但按钮操作未打开网页。

请注意,同样适用于 android 应用程序没有任何问题,它在浏览器中打开 url 没有任何问题。

我正在以正确的格式发送 URL,即:https ://www.something.com

请任何人都可以对此有所了解吗?

4

3 回答 3

2

自从应用内消息发布以来,我就遇到了这个问题。我做 android 部分没有任何问题,但对于 iOS,我无法让按钮工作。感谢这篇文章的洞察力。但是上面单独添加到 AppDelegate 是行不通的。我必须添加更多:

func application(_ application: UIApplication,
                 open url: URL,
                 sourceApplication: String?,
                 annotation: Any) -> Bool {
    let dynamicLink = DynamicLinks.dynamicLinks().dynamicLink(fromCustomSchemeURL: url)

    if dynamicLink != nil {
        if dynamicLink?.url != nil {
            // Handle the deep link. For example, show the deep-linked content,
            // apply a promotional offer to the user's account or show customized onboarding view.
            // ...
        } else {
            // Dynamic link has empty deep link. This situation will happens if
            // Firebase Dynamic Links iOS SDK tried to retrieve pending dynamic link,
            // but pending link is not available for this device/App combination.
            // At this point you may display default onboarding view.
        }
        return true
    }
    return false
}



func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([Any]?) -> Void) -> Bool {
    let handled = DynamicLinks.dynamicLinks().handleUniversalLink(userActivity.webpageURL!) { (dynamiclink, error) in
        // ...
    }

    return handled

}
于 2018-09-28T00:31:09.037 回答
0

确保您的 AppDeletegate 的 application:openURL:sourceApplication:annotation:(iOS 8 及更早版本)和 application:openURL:options:(iOS 9 及更高版本)正确返回 YES/true 或 NO/false。In-App Messaging SDK 将检查这些方法的返回值,以确定它们是否已由应用程序处理。

因此,对于网络链接情况,请确保您返回 No/false,以便应用内消息 SDK 可以将其转发到系统以在浏览器中加载。您可以通过检查单击按钮后如何触发 appdelegate 的 url 处理方法来调试此行为。

于 2018-09-26T16:31:14.280 回答
0

好的,解决方案是使用firebase动态链接并在AppDelegate.swift中添加一个方法

func application(_ application: UIApplication,
               open url: URL,
               sourceApplication: String?,
               annotation: Any) -> Bool {
let dynamicLink = DynamicLinks.dynamicLinks().dynamicLink(fromCustomSchemeURL: url)

if dynamicLink != nil {
  if dynamicLink?.url != nil {
    // Handle the deep link. For example, show the deep-linked content,
    // apply a promotional offer to the user's account or show customized onboarding view.
    // ...
  } else {
    // Dynamic link has empty deep link. This situation will happens if
    // Firebase Dynamic Links iOS SDK tried to retrieve pending dynamic link,
    // but pending link is not available for this device/App combination.
    // At this point you may display default onboarding view.
  }
  return true
}
return false
}

在谷歌的应用内消息示例中查看更多信息

于 2018-09-27T04:00:04.270 回答