Type Exception Report
Message Invalid mime type "*.*;q=0.9": does not contain '/'
Description The server encountered an unexpected condition that prevented it from fulfilling the request.
Exception
org.springframework.http.InvalidMediaTypeException: Invalid mime type "*.*;q=0.9": does not contain '/'
Your MIME type (https://developer.mozilla.org/en-US/docs/Web/HTTP/Guides/MIME_types) is incorrectly formed; it looks like you're delimiting the type and subtype with a "." instead of the required "/"
That’s not really much information, so what are you trying to achive? Creating something? Fetch something?
From the error message you can see that your request is missing a mime type. Maybe the “accept” header is missing if you’re fetching or the “content-type” is missing if you’re creating.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.