You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the saas always return the content-type as application/json, even when the client does not support it.
If application/json is the only content-type supported, the service should answer 406 Not Acceptable when application/json is not in the Accept headers, OR provide a valid representation of the resources according to the Accept headers.
Which basically means it should return an html or text page if the client accepts only text/html or text/plain. Obviously all the others content types should be refused with a 406.
The text was updated successfully, but these errors were encountered:
Right now the saas always return the
content-type
asapplication/json
, even when the client does not support it.If
application/json
is the only content-type supported, the service should answer406 Not Acceptable
whenapplication/json
is not in theAccept
headers, OR provide a valid representation of the resources according to theAccept
headers.Which basically means it should return an html or text page if the client accepts only
text/html
ortext/plain
. Obviously all the others content types should be refused with a 406.The text was updated successfully, but these errors were encountered: