Open karolmajta opened 9 years ago
@produces('application/json')
will cause 406 when client accepts */*
*/*
@produces('application/json', '*/*')
works fine.
This should not require the second form. If client accepts */* then application/json response is perfectly valid.
application/json
+1, just hit this issue myself
@karolmajta see https://github.com/mattupstate/flask-negotiate/pull/3
will cause 406 when client accepts
*/*
works fine.
This should not require the second form. If client accepts
*/*
thenapplication/json
response is perfectly valid.