We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the Custom Component So I'm getting an access token in the URL like that: http://localhost:3000/#access_token=eyJhbGciOiJIUzI....
http://localhost:3000/#access_token=eyJhbGciOiJIUzI....
Seems like self.router.page.params can't get get params if the URL uses a hashtag '#'.
self.router.page.params
For such cases, I need to access self.router.page.raw_path and parse it myself, which is unnecessary work.
self.router.page.raw_path
Also parse params for URLs with hashtags!
Additional context reflex 0.6.0
The text was updated successfully, but these errors were encountered:
ENG-4173 Allow me to get GET params also when the URL uses a '#' instead of a '?'
Sorry, something went wrong.
Can I work on this, plz assign it to me.
@Rustix1604 just assigned you!
Rustix1604
No branches or pull requests
Describe the Custom Component
So I'm getting an access token in the URL like that:
http://localhost:3000/#access_token=eyJhbGciOiJIUzI....
Seems like
self.router.page.params
can't get get params if the URL uses a hashtag '#'.For such cases, I need to access
self.router.page.raw_path
and parse it myself, which is unnecessary work.Also parse params for URLs with hashtags!
Additional context
reflex 0.6.0
The text was updated successfully, but these errors were encountered: