http://127.0.0.1:8084/Happy/studen/#access_token=eyJhbGciOiJIUzI1
I have a recirect url like this which redirects to a handler in my django app and it works fine .
The issue um facing was to read values appearing after # in the particular url . How may I read those values in the corresponding handler?
This is a pure Django Python Implementation and there wont be any javascripts to identify any urls
I cannot change the behavior of the token coming with the #
I Have tried both of these ways
n = request.get_full_path()
k = resolve(request.path_info).url_name
But it wont give me the values after # Is there a specific way to do this in django?