I would like to parse an url like this one:
http://YOUR_URL/#access_token=166942940015970%7C2.sa0&expires_in=64090
I need to get the value of access_token and expires.
Normally those url should be with question mark like:
http://YOUR_URL/?access_token=166942940015970%7C2.sa0&expires_in=64090
Is there any other possibility than regex with java ?
Could someone tell me why oauth2.0 is with hash sign ("#") and not with question mark ("?") ?