Google maps URL scheme not working on iOS 9.1 [duplicate] - ios

This question already has answers here:
iOS 9 not opening Instagram app with URL SCHEME
(14 answers)
Closed 7 years ago.
The following URL scheme was working on previous version but doesn't work anymore on iOS 9 :
comgooglemaps://?q=Google+Japan,+Minato,+Tokyo,+Japan&center=35.660888,139.73073&zoom=15&views=transit
Did something change on iOS 9 that prevent apps from opening other apps using URL schemes ?

I think currently you don't add google map scheme to whitelist.
You can reference to this question.
Whitelist

Related

Integrate Linkedin from iphone app? shows "-canOpenURL: failed for URL: linkedin://-error: This app is not allowed to query for scheme linkedin" [duplicate]

This question already has answers here:
iOS 9 not opening Instagram app with URL SCHEME
(14 answers)
Closed 5 years ago.
Pod File used :
https://github.com/tonyli508/LinkedinSwift
created new app in here : https://developer.linkedin.com/docs/ios-sdk
In info.plist , Add App Transport Security setting and allow the arbitrary loads which is a bool. Also add "LSApplicationQueriesSchemes" there.
on click,
enable this code
let url = NSURL(string: "linkedin://");
UIApplication.sharedApplication().openURL(url!)

Trying to authenticate using LinkedIn authentication in my iOS app [duplicate]

This question already has answers here:
iOS linkedin authentication
(6 answers)
Closed 6 years ago.
I have executed the steps as mentioned on the LinkedIn website for authentication and trying out the sample app
failed for URL: "linkedin://authorize" - error:
"This app is not allowed to query for scheme linked"
Any help will be greatly appreciated.
Goal is to authenticate using LinkedIn credentials in the app I am building
Xcode 7 / iOS 9 solution:
Go into your Info.plist and add an array with the key LSApplicationQueriesSchemes The array should contain any url schemes that your app needs to use. In your case, linkedin should be the value

What is the Latest URL Scheme to open an youtube channel from iOS app [duplicate]

This question already has answers here:
iOS open YouTube App with query (url schemes)
(10 answers)
Closed 8 years ago.
I want to open Youtube app with an channel from my iPhone app. Previously i was using the following URL scheme and it was working fine.
youtube://user/channel Name.
But this is not working after i updated my Youtube app to 2.6.0 which is latest. Is there any change in the URL scheme to open youtube app with a channel. Any help would be appreciated.
i tried with the following but of no use.
youtube://channel/channelName
youtube://channel/channelID
Thanks in advance.
youtube://www.youtube.com/user/channelname
Native app URL strings:
http://www.youtube.com/watch?v=VIDEO_IDENTIFIER
http://www.youtube.com/v/VIDEO_IDENTIFIER
Please refer this Apple Doc link for more info.

iOS: URL Scheme to open specific profile in flickr app [duplicate]

This question already has answers here:
Open Flickr From Third Party iOS App
(3 answers)
Closed 9 years ago.
I checked the plist of the flickr app and it lets me open it with the url handler
flickr://
but what is the argument to open a specific profile page? I can't find any documentation for that...
Thanks
You should look at my answer here:
Open Flickr From Third Party iOS App.
Unfortunately, Flickr didn't add this option.

Need to display installed applications list [duplicate]

This question already has answers here:
get list of installed applications on iphone objective-c
(6 answers)
Closed 9 years ago.
Im developing on for iOS- supporting from iOS 5 and on
I need to create a button that will open for me a list of all applications installed on the device- through which i can send messages
I have no idea where to even start
You can't have the list of installed applications on iOS.
What you can do is use the URL Schemes.
Here is Apple's URL Scheme Reference
And here is a wiki with the URL Schemes for many iOS applications

Resources