SpongeBob wrote:Does anyone know how I can call EasyGo with a dynamically created SGF from within a Safari WebApp??
Are you using iOS 6.1 or iOS 7?
From my testing, it's even worse on iOS 7.0.2. For Safari webapp, even a normal link like below won't work.
Code: Select all
<a href="http://gtl.xmp.net/sgf/92/9255-Nexik-DrStraw-colladay.sgf">test sgf </a>
From this discussion(http://stackoverflow.com/questions/1887 ... p-in-ios-7), this might be a known issue for iOS 7.
And on both iOS 6.1 and iOS 7, the data: URI as you listed can't be used to launch app, and I don't know why. It also seems custom URL scheme to launch apps from a web app works on iOS 6.1 and doens't work on iOS 7. So if iOS 7 fix this issue, I could add a custom URL schema support for EasyGo, so something like easygo://sgf/sgf-data could to be used to launch EasyGo. (however, there might be a limitation for the max length of the URL, generally it's safe to keep it less than 2048 bytes, which is almost enough for a normal game. )
Or, for the time being, just delete the line: apple-mobile-web-app-capable, however, it won't look like a web app anymore.
P.S.: This guy has the same issue with data uri in webapp, and no result yet: http://stackoverflow.com/questions/1509 ... n-web-apps
