First of all I try the following url http://localhost:8050/app/auth/#access_token=my_token/ and this give me nothing (just blank white screen). Then I try url http://localhost:8050/app/auth/access_token=my_token/ without # symbol and get in my console output from get_access_token method.
{'': ['access_token=my_token']}
None
I want to use the reflex routes with query parameters like http://localhost:8050/app/auth/#access_token=my_token/
Is there any chance do it?
Cannot find propper way to access query parameters to get access token from redirecting on my reflex frontend app
My State class is:
And my auth rout:
First of all I try the following url
http://localhost:8050/app/auth/#access_token=my_token/
and this give me nothing (just blank white screen). Then I try urlhttp://localhost:8050/app/auth/access_token=my_token/
without # symbol and get in my console output fromget_access_token
method.I want to use the reflex routes with query parameters like
http://localhost:8050/app/auth/#access_token=my_token/
Is there any chance do it?