Warm tip: This article is reproduced from serverfault.com, please click

Axios Error with Status Code 415 in Using Get Method

发布于 2018-02-20 05:45:09

Good day,

I'm facing this error code using axios.get. The error code is 415. What I want to do is, supply const object to send it to my controller. I tried to debug the controller but it doesn't proceed in my controller (ASP.NET Core Controller).

Here are my sample codes:

// Class that I want to supply
public class User{
    public int? Name {get;set;}
    public DateTime? Bday {get;set;}
}

// My Controller
public async Task<IActionResult> GetUsers([FromBody] User user){
    // Do something here
}

// My js file axios is already imported and working
async searchUser(){
    const user = {
        Name: name,
        Bday: bday
    }

    await axios.get(`/SomePage/GetUsers/`,user).then(response=>{
        // do something here
    }.catch(error=>{console.log(error);});
}

I hope someone will help me find a solution about this.

Questioner
jsonGPPD
Viewed
0
Jaliya Udagedara 2018-02-20 16:35:39

The HTTP status code 415 means Unsupported Media Type. That is it indicates that the server refuses to accept the request because the payload format is in an unsupported format.

According to MDN Web Docs,

The format problem might be due to the request's indicated Content-Type or Content-Encoding, or as a result of inspecting the data directly.

Can you change your API action FromBody to FromQuery. Technically that should work.