I would like to deeplink to my xing profile within my application. I know how to open the iOS Xing App in my code, but I can't figure out how to deeplink to my own profile for example. Does anyone know the URL route?
let appScheme = "Xing://profile/[username]"
let appSchemeURL = URL(string: appScheme)
if UIApplication.shared.canOpenURL(appSchemeURL!) {
UIApplication.shared.open(appSchemeURL!, options: [:], completionHandler: nil)
}
That's how I tried it, but all it does is, it opens the app on the initial screen.