Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS Safari does not recognize url schemes after user cancels

Tags:

I'm noticing strange behavior in Safari recently.

I register a url scheme for the my app, and enter myapp:// into Safari. This launches my app immediately.

Then I go back to Safari, and enter myapp:// into Safari again, this time it prompts me "Open this page in "myapp"?" Cancel or Open.

My app will launch if I tap on open, and subsequent attempts the same alert shows. If I try tapping on cancel, my app will not launch. which is expected.

However, if I enter myapp:// into the URL bar again, I'm prompted "Cannot Open Page" "Safari cannot open the page because the address is invalid."

This will fail in the same way for all subsequent attempts, until I kill Safari and re-start it, or open another tab.

This is the same behavior with Youtube and Evernote. my guess is that Safari cached the URL as an invalid URL when the User taps on cancel. Is there official documentation on this behavior?

Bbserved in iOS 8.1.2 and iOS 6.1.3

like image 634
tzl Avatar asked Jan 02 '15 08:01

tzl


People also ask

How to add URL scheme xcode?

Register your URL scheme Register your scheme in Xcode from the Info tab of your project settings. Update the URL Types section to declare all of the URL schemes your app supports, as shown in the following illustration. In the URL Schemes box, specify the prefix you use for your URLs.


2 Answers

In 9.1 the issue still exists. The solution for me is just restarting safari (swipe up to clear it from background).

like image 98
Jinghan Wang Avatar answered Sep 21 '22 15:09

Jinghan Wang


I had the same problem. Once cancelled, it would give that error.

What I did was sending an extra parameter with a timestamp, so Safari would not cache it. So after the last param, I added a foo param with the number of milliseconds since midnight January 1, 1970. I use as3, but this should be readable for all developers:

var foo:Number = new Date().time; //The number of milliseconds since midnight January 1, 1970 var urlRequest:URLRequest = new URLRequest(url+"&foo="+foo); 
like image 38
APvG Avatar answered Sep 18 '22 15:09

APvG