How to get access to the URL segments after a # in Python Flask?
问题 I'm trying to support OAuth2 login through Python Flask, so I want to handle a URL that looks like this: http://myserver/loggedIn#accessToken=thisIsReallyImportant but when I handle the callback it just seems to drop all the characters after the # in the URL, which contains the important Oauth access token. How do I get this info? It's not included in request.url ETA: I can retrieve it in client-side javascript using window.location in Javascript, but then I'd have to pass it back to the