0

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?

Ramkumar Paulraj
  • 1,841
  • 2
  • 20
  • 40
Milan Nosáľ
  • 19,169
  • 4
  • 55
  • 90

1 Answers1

3

You can use bitmoji-sdk://:

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

Taken from AppSight.io

LinusGeffarth
  • 27,197
  • 29
  • 120
  • 174
  • 1
    You're welcome :) BTW you can research stuff like this on sites like [AppSight.io](https://www.appsight.io/app/bitmoji). No affiliation, I just found it. – LinusGeffarth Oct 11 '18 at 09:46