Im iOS9 में अपने ऐप में Instagram url जोड़ने की कोशिश कर रहा हूं, हालांकि मुझे निम्नलिखित चेतावनी मिल रही है:
-canOpenURL: failed for URL: "instragram://media?id=MEDIA_ID" - error: "This app is not allowed to query for scheme instragram"
हालाँकि, Ive ने LSApplicationQueriesSchemes
मेरे में निम्नलिखित जोड़ा info.plist
;
<key>LSApplicationQueriesSchemes</key>
<array>
<string>instagram</string>
<string>instagram://media?id=MEDIA_ID</string>//this one seems to be the issue
</array>
कोई भी मदद बहुत ही सराहनीय होगी?
EDIT 1
यह वह कोड है जिसका मैं इंस्टाग्राम खोलने के लिए उपयोग कर रहा हूं:
NSURL * instagramURL = [NSURL URLWithString:@"instragram://media?id=MEDIA_ID"];//edit: note, to anyone copy pasting this code, please notice the typo OP has in the url, that being "instragram" instead of "instagram". This typo was discovered after this StackOverflow question was posted.
if ([[UIApplication sharedApplication] canOpenURL:instagramURL]) {
//do stuff
}
else{
NSLog(@"NO instgram found");
}
इस उदाहरण के आधार पर।