简体   繁体   中英

What is the iOS app URL scheme for Bitmoji app?

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?

You can use bitmoji-sdk:// :

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

Taken from AppSight.io

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM