New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to handle hashes in URL? #779
Comments
|
@astanciu there is one major problem here. Fragments ( Then again, this will not get the hash when server side rendering. @arunoda can you verify this? |
|
Browsers, by design, don't include URL hash in HTTP requests, so it is simply impossible to handle on the server side. I would just use |
|
@frol you're right, using |
A lot of OAuth based callback urls will take the form of:
http://site.com/login#state=123&code=123Is there any way to access that hash? Would be great if
props.urlhad a.hashproperty (alongside.query)Or is there an easier way to get this?
The text was updated successfully, but these errors were encountered: