Here what i am trying to accomplish is to get URL parameters value from the URL
http://127.0.0.1:8000/sample/redirect_login/?request_token=9I0KoKcgdKH0s6w1Qzp6t5P2czlyxPum&action=login&status=success
I have created similar URL path in my urls.py but looks like they are not matching
path('redirect_login/?request_token=<str:request_token>&action=<str:action>&status=<str:status>',views.redirectLogin, name = "redirectLogin"),
I want to get the parameters 1. request_token 2. action 3. Status
Kindly help how to go about this? Should i be using REGEX for url matching ?
Thanks