I cant figure out how to get post data from flask.
Below is my content-type
'Content-Type': 'application/x-www-form-urlencoded'
Here is what I see from flask so I know the data is there. I just cant access it.
request.values -> CombinedMultiDict([ImmutableMultiDict([]), ImmutableMultiDict([('{"email":"david","password":"FU"}', u'')])])
So...how do I get email and password?
email = request.?????