0

I tried to launch my native app from safari using custom scheme like myapp://.
This is working fine when app is installed, but when app is uninstalled ,safari is displaying:
page cannot found popup .
My requirement is i need to redirect to some page,let's say apple store.
How to do this?
Any suggestions?

Is there any update on this?

Avilam
  • 21
  • 1
  • 5

2 Answers2

2

You can't, since the app handling the custom URL scheme is no longer available iOS does no longer know how to handle the custom URL.

rckoenes
  • 69,092
  • 8
  • 134
  • 166
0

I faced the same issue and appending a question mark (?) at the end seems to resolve it. It was working fine till ios5 but needs this question mark since ioss 6. While trying to launch you should say myapp://?parameter1=xyz

Hope this helps.

Venkat
  • 820
  • 1
  • 7
  • 16
  • thanks for ur reply,but i m still getting "cannot open page because the address is invalid" error when app is uninstalled – Avilam Apr 10 '13 at 10:19
  • i want to get rid of that popup and redirect to some other page in browser.any idea? – Avilam Apr 10 '13 at 10:19