What is the iOS app URL scheme for Bitmoji app?

北战南征 提交于 2019-12-11 15:43:22

问题


I'm trying to open the Bitmoji app from within my own app in iOS using UIApplication.shared.open. When I use just "https://www.bitmoji.com/" URL, the Bitmoji app does not intercept the call and it opens the URL in Safari.

Tried "bitmoji://" as the URL scheme, but this does not work. Then I googled for the bitmoji app URL scheme, but without success. Can somebody help?


回答1:


You can use bitmoji-sdk://:

guard let url = URL(string: "bitmoji-sdk://") else { return }
UIApplication.shared.open(url)

Taken from AppSight.io



来源:https://stackoverflow.com/questions/52756856/what-is-the-ios-app-url-scheme-for-bitmoji-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!