This is the code I use:
let instagramURL = NSURL(string: "instagram://app")
if UIApplication.shared.canOpenURL(instagramURL! as URL) {
//Code
} else {
//Showing message "Please install the Instagram application"
}
I am getting unsuccessful to enter in if loop.
I get this error:
canOpenURL: failed for URL: "instagram://app" - error: "This app is not allowed to query for scheme instagram"
I have also Login with Instagram in my device.

