Unsupported Media Type in postman

后端 未结 3 563
暖寄归人
暖寄归人 2021-01-03 18:17

I am implementing spring security with oauth2 and jwt. the below is my login function

function doLogin(loginData) {

    $.ajax({
        url :  back+\"/auth         


        
相关标签:
3条回答
  • 2021-01-03 18:40

    Http 415 Media Unsupported is responded back only when the content type header you are providing is not supported by the application.

    With POSTMAN, the Content-type header you are sending is Content type 'multipart/form-data not application/json. While in the ajax code you are setting it correctly to application/json. Pass the correct Content-type header in POSTMAN and it will work.

    0 讨论(0)
  • 2021-01-03 18:50

    You need to set the content-type in postman as JSON (application/json).

    Go to the body inside your POST request, there you will find the raw option.

    Right next to it, there will be a drop down, select JSON (application.json).

    0 讨论(0)
  • 2021-01-03 18:50

    I also got this error .I was using Text inside body after changing to XML(text/xml) , got result as expected.

    • If your request is XML Request use XML(text/xml).

    • If your request is JSON Request use JSON(application/json)

    0 讨论(0)
提交回复
热议问题