Friends
I am using get request in flask and sending parameters in url only https://127.0.0.1:34/CheckOn?parameter1=abc¶meter2=deq
accessing the parameters using parser = reqparse.RequestParser() parser.add_argument('parameter1', type=str)
Now for post I want to pass these parameters in the request url only and access it using method other than reqparse.RequestParser() http://127.0.0.1:123/messages?new123=1234
Need to access new123 with method other than RequestParser
No matter if you're using either GET or POST methods, you can get your URL parameters through Flask's
request.argsdictionary.In your case it would be something like: