url-scheme

custom URL scheme doesn't work! Navigon AppInteract

独自空忆成欢 提交于 2019-12-08 10:23:37
问题 It is really frustrating me. I used the doc provided by Navigon itself. Unfortunately it doesn't work as expected. Navigon launches, but stops at the main menu. All I do is this: NSString *myTestStr = [NSString stringWithFormat:@"navigon://App|Another place|FRA|75008|PARIS|rue de Turin|17|2.324621|48.881273"]; NSString *navigonStrEsc = [myTestStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; NSLog(@"navigonStr: %@", navigonStrEsc); [[UIApplication sharedApplication] openURL

Wechat deeplink is not opening properly in app from mobile browser

跟風遠走 提交于 2019-12-08 07:51:09
问题 I am basically trying to open wechat app from mobile web browser for payment. But any of the Deeplink url scheme I tried like these: https://spacekid.me/weixin-url-schemes/ https://stackoverflow.com/a/35576003/3326275 However all of them giving me following error though application opens: I tried to use any of the urls, all of them are giving me same error as above. I want to open payment URL in web app. Leave that alone, any of the links. Any one knows : Why am I facing error, is there any

How can I open/send a URL to another app on iOS with a Gluon application?

耗尽温柔 提交于 2019-12-08 05:28:27
问题 I hope to make use of existing functionalities in other apps on iOS in my own app. To my knowledge it should be able to be done with URL custom schemes: https://developer.apple.com/library/content/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Inter-AppCommunication/Inter-AppCommunication.html Right now in my TryingService gluon application that are acting as a listener, I am using RuntimeArgsService to listen for LAUNCH_URL_KEY . And to my Default-Info.plist file of this

Find out an app's URL programmatically

◇◆丶佛笑我妖孽 提交于 2019-12-08 03:16:38
问题 I need to launch another app from within my own app, but I don't have its URL. So my question is: Is there a way to find out another app's url programmatically based on its bundle identifier, or trackid? 回答1: No, there is no way to determine an app's custom URL scheme programmatically. An app's custom scheme, if there even is one, can be completely unrelated to anything else you may know about the app. The only way to determine the scheme is to access the app's Info.plist file, and unless you

iOS - Open certain view controller with URL scheme

孤人 提交于 2019-12-07 07:53:28
问题 I'm playing around with URL schemes in my app. I easily made one to open my app, just adding the necessary items to info.plist. This current URL "myappname://" takes the user to the initial view controller, FirstTableViewController, but I was wondering if it would be possible to modify that URL scheme so it I can have one that takes the user to a certain view controller, such as ThirdTableViewController. I would use this as a handy feature in something like Launch Center. 回答1: In ..

URL Scheme to open a post in facebook app

拈花ヽ惹草 提交于 2019-12-07 03:32:36
问题 How do I use the url scheme to open a facebook post in facebook ios app? I got a thing while goolgling like "fb://post/"id"" but it does not work, it just opened the facebook app. 回答1: http://wiki.akosma.com/IPhone_URL_Schemes This "works" but, then again, doesn't: fb://post/ It only works if the Facebook app has previously loaded the particular post, otherwise it draws a blank. 回答2: u can use this link. this might help you What are all the custom URL schemes supported by the Facebook iPhone

Open iOS 11 Files app via URL Scheme or some other way

大兔子大兔子 提交于 2019-12-07 00:52:06
问题 My app is now sharing Documents directory on iOS 11 Files app "On My iPhone" section. (Thanks to this article: Working with the Files App in iOS 11) Question is how to open this directory or at least File app root page via URL Scheme. UIDocumentPickerViewController or UIDocumentBrowserViewController doesn't help in this situation. 回答1: The Files app can be opened with the URL scheme shareddocuments:// . I don’t know if there’s a way to open a specific directory however. 来源: https:/

How can I open/send a URL to another app on iOS with a Gluon application?

点点圈 提交于 2019-12-06 15:56:38
I hope to make use of existing functionalities in other apps on iOS in my own app. To my knowledge it should be able to be done with URL custom schemes: https://developer.apple.com/library/content/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/Inter-AppCommunication/Inter-AppCommunication.html Right now in my TryingService gluon application that are acting as a listener, I am using RuntimeArgsService to listen for LAUNCH_URL_KEY . And to my Default-Info.plist file of this application I have added URL Identifier : com.tryingservice.TryingService , and URL Scheme : outputHello . How

Wechat deeplink is not opening properly in app from mobile browser

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-06 14:46:57
I am basically trying to open wechat app from mobile web browser for payment. But any of the Deeplink url scheme I tried like these: https://spacekid.me/weixin-url-schemes/ https://stackoverflow.com/a/35576003/3326275 However all of them giving me following error though application opens: I tried to use any of the urls, all of them are giving me same error as above. I want to open payment URL in web app. Leave that alone, any of the links. Any one knows : Why am I facing error, is there any way to open any deeplink without error. How to open payment URL from browser to app so he can pay via

Find out an app's URL programmatically

只愿长相守 提交于 2019-12-06 14:13:32
I need to launch another app from within my own app, but I don't have its URL. So my question is: Is there a way to find out another app's url programmatically based on its bundle identifier, or trackid? No, there is no way to determine an app's custom URL scheme programmatically. An app's custom scheme, if there even is one, can be completely unrelated to anything else you may know about the app. The only way to determine the scheme is to access the app's Info.plist file, and unless you are on a jailbroken device, this can't be done at runtime. If you just want to launch other apps, you can