I'm trying to debug an app that first authenticates with the Blackberry UEM Client. The app redirects to UEM, authentication is successfull. But then the UEM Client doesn't redirect back to the app. No error message, the UEM app just stays open.
In the app I have the URL types configured. I also checked in the product if the variables (PRODUCT_BUNDLE_IDENTIFIER) resolve to the correct values.
Questions » Recent Q&A » UEM Client no longer redirects back to app after authentication
UEM Client no longer redirects back to app after authentication
I'm trying to debug an app that first authenticates with the Blackberry UEM Client. The app redirects to UEM, authentication is successfull. But then the UEM Client doesn't redirect back to the app. No error message, the UEM app just stays open.
In the app I have the URL types configured. I also checked in the product if the variables (PRODUCT_BUNDLE_IDENTIFIER) resolve to the correct values.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<dict>
<key>CFBundleURLName</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleURLSchemes</key>
<array>
<string>$(PRODUCT_BUNDLE_IDENTIFIER).sc2</string>
<string>$(PRODUCT_BUNDLE_IDENTIFIER).sc3</string>
<string>$(PRODUCT_BUNDLE_IDENTIFIER).sc2.1.0.0.0</string>
<string>com.good.gd.discovery</string>
</array>
</dict>
</array>
</plist>
What could be the reasons that UEM client doesn't redirect back?