url-scheme

Launching app from sms link or email link

爷,独闯天下 提交于 2019-11-28 13:19:51
I have the requirement to launch an app when an sms or email link is followed. I have already been reading about URL schemes and already test that and it works, but the problem is that if the app is not installed on the device nothing will happen. I need a way to open a web url if the app is not installed, but I couldn't find a way of doing this... Any idea? Thanks Zebs It can be done. The way I would structure it is by having a redirect from a server you control. You send the user a link that points to your server. You try to launch your app using the custom URL scheme. If it fails, you

How to get my iPhone app listed in iPhone's native Photos app share menu?

久未见 提交于 2019-11-28 10:16:35
Is it possible to list my iPhone app in iPhone's native photos app's share/send menu? Some links says not possible. But then how facebook, twitter apps are allowed as those too are native apps not developed by apple. Any help is appreciated. Thanks Sayali woz Apple has made a special exception for Facebook and Twitter because of their integration with iOS. Any other apps cannot do that. UPDATE: Share extensions were introduced in iOS 8, which allow developers to add their apps to the list of sharing options in the system menu. 来源: https://stackoverflow.com/questions/17067039/how-to-get-my

JavaScript - how to detect if the Custom URL scheme is available or not available?

风格不统一 提交于 2019-11-28 08:34:52
In Windows operating system i have a custom URI scheme, which is used from IE, Firefox, Opera, Safari, Google Chrome to launch Juniper router VPN SSH client (like Cisco). Basically it works as below if the SSH Client is installed, from the web page VPN SSH Client can be launched. <a href="juniper:open"> VPN SSH Client </a> Problem: sometimes the user did not installed the Juniper router SSH client application from the CD/DVD box, therefore the juniper:open does nothing. So in that case, i need to detect weather or not the URL scheme is available. Therefore, I tried Javascript method but its

“This app is not allowed to query for scheme cydia” IOS9 error

房东的猫 提交于 2019-11-28 08:16:44
I have an app where I hit a HTTP Request <NSURLConnection: 0x12d755110> { request: <NSMutableURLRequest: 0x12d754e10> { URL: http://XX.XX.XX.XXX/webService/dataService.svc/SearchLocation } } Now, whenever the above request is made I get the following error and no data is received in the response. After 60 Sec I get " Time Out error ". It is working fine on IOS8 and below but not working gin IOS9. Could anybody let me know what else have I got to do with this issue. Also, I have done the following changes regarding ATS for iOS9 in info.plist, but still facing the issue. Please let me know how

Open one App from another programmatically [duplicate]

亡梦爱人 提交于 2019-11-28 06:06:32
问题 This question already has answers here : Launch an app from within another (iPhone) (14 answers) Closed 3 years ago . We have a standard SAP BI App and we don't have the code for that and our company purchased it for our internal use and now my PM has asked me to open SAP BI App from our custom App programmatically and I have done it using url scheme's and then I am facing the problem he wants me to open our custom App automatically when ever the user clicks on a specific button in standard

Android App: How to read get parameters from a custom url scheme?

余生颓废 提交于 2019-11-28 04:08:49
Basically, I have the same question described as in How to implement my very own URI scheme on Android The answer given there works for me. When the custom url is called MyUriActivity's methods onCreate and onStart are called. BUT How can I access the get parameters from within MyUriActivity ? Example: myapp://path/to/what/i/want?d=This%20is%20a%20test In MyUriActivity I need to read the value of get parameter d . How do I do that? CommonsWare Call getIntent().getData() to retrieve the Uri , then call getQueryParameter("d") on it to get the value of d . 来源: https://stackoverflow.com/questions

How to fall back to marketplace when Android custom URL scheme not handled?

ぐ巨炮叔叔 提交于 2019-11-28 02:51:48
We have an app that handles a custom URL scheme (vstream://). When someone comes to a web page that has some vstream:// content, we need to redirect them to the store if they don't have our app installed. In iOS, we do this: setTimeout(function() { window.location = "itms://itunes.apple.com/us/app/kaon-v-stream/id378890806?mt=8&uo=4"; }, 25); window.location = "vstream:view?code=...stuff..."; If the window.location assignment fails, the timeout jumps over the App Store before the dialog box comes up. (I found this technique here: Is it possible to register a http+domain-based URL Scheme for

URL Schemes to personal apps

血红的双手。 提交于 2019-11-28 02:08:47
问题 Is there a way to use URL schemes to open another app (not a common one like maps), without having access to the source code of that app? I'm working for a company that has several apps, and they've tasked me to build another app that will concatenate all of their other apps. If I really need to, I can email my boss and ask about setting up the codes. If it helps, I'm using XCode 7.3.1, in Swift 2. By the way, I checked for similar questions, but couldn't find any. If you do find one, send a

How to make a call which begin with * in iPhone?

心已入冬 提交于 2019-11-28 02:08:15
In my application, I want to call the number *111, when I use this URL tel:*111 to call, but can't make call success, please give me some indicate, thank you very much. [[UIApplication sharedApplication] openURL:@"tel:*111"] was not work. but it will work when remove * : [[UIApplication sharedApplication] openURL:@"tel:111"]; Ole Begemann It's not possible. From the Apple URL Scheme Reference : To prevent users from maliciously redirecting phone calls or changing the behavior of a phone or account, the Phone application supports most, but not all, of the special characters in the tel scheme.

Is there a custom URL scheme for the built-in Contacts app?

坚强是说给别人听的谎言 提交于 2019-11-28 01:33:44
问题 I am trying to write an app that does a person search of my company. When it returns a result, I want to include a feature to add the person to the Contacts app with the push of a button. The problem is, I can't find a way to launch the Contacts app through a custom URL scheme with the new person info as parameters. Does anyone have any idea if this is possible and if so, how to go about that? 回答1: If there were a public URL scheme, Apple would have documented it in the URL Scheme Reference.