You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
I'm encountering issues with opening URLs in MS Edge in my own application protected with the Intune SDK, which enforces App Protection Policies. To confirm if the issue was specific to my app or the Intune SDK, I tested it with the Intune SDK demo application, and it exhibits the same behavior.
Steps to reproduce:
Download and install the Intune SDK demo application.
Apply an App Protection Policy, restricting data transfer to only policy-managed apps.
Attempt to open a URL using UIApplication.shared.open(reqURL, options: [.universalLinksOnly: true]).
Observed behavior:
The app shows a popup stating "Action not allowed," and the URL fails to open in MS Edge, which is also managed by Intune policies.
Expected behavior:
The URL should open in MS Edge if it’s a policy-managed app.
Workaround:
When the options: [.universalLinksOnly: true] parameter is removed, the URL opens in MS Edge without issues.
Since the demo app shows the same behavior, this confirms that the issue lies with the Intune SDK rather than my specific application. Any guidance on resolving this would be appreciated.
The text was updated successfully, but these errors were encountered:
Description:
I'm encountering issues with opening URLs in MS Edge in my own application protected with the Intune SDK, which enforces App Protection Policies. To confirm if the issue was specific to my app or the Intune SDK, I tested it with the Intune SDK demo application, and it exhibits the same behavior.
Steps to reproduce:
UIApplication.shared.open(reqURL, options: [.universalLinksOnly: true])
.Observed behavior:
The app shows a popup stating "Action not allowed," and the URL fails to open in MS Edge, which is also managed by Intune policies.
Expected behavior:
The URL should open in MS Edge if it’s a policy-managed app.
Workaround:
When the
options: [.universalLinksOnly: true]
parameter is removed, the URL opens in MS Edge without issues.Since the demo app shows the same behavior, this confirms that the issue lies with the Intune SDK rather than my specific application. Any guidance on resolving this would be appreciated.
The text was updated successfully, but these errors were encountered: