How to open a url with a #token in the browser
When i do this
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://myapplication.com#myToken")));
'myToken' is lost.
开发者_开发百科Is this normal?
Is there a workaround ?
You need a slash before the hash.
精彩评论