I'm having this url parameter:
http://127.0.0.1:8000/information/vimeo/?oauth_token=xxxxxxxxxxxxxxxxxxxxxxxx&oauth_verifier=xxxxxxxxxxxxxxxxxxxxxx
How can I get the value of oauth_verifier
in the url.
Does this code work?
oauth_verifier = request.GET.get('oauth_verifier')
or do I have to mention as reg exp in the urls.py?
I'm sorry for this type of question. I have a long coding and I don't know how to check this particular code in the shell.
Thanks!