web-dev-qa-db-fra.com

API Web .Net Core, impossible de publier des données avec POSTMAN, erreur - 415 Type de support non pris en charge

Je teste ma première WebAPI .net Core avec Postman

une erreur de type de support inconnu se produit.

Qu'est-ce que je rate?

This is postman rest client

Ceci est mon objet d'affichage

public class Country
{
    [Key]
    public int CountryID { get; set; }
    public string CountryName { get; set; }
    public string CountryShortName { get; set; }
    public string Description { get; set; }
}

Ceci est le contrôleur webapi

[HttpPost]
public async Task<IActionResult> PostCountry([FromBody] Country country)
{
    if (!ModelState.IsValid)
    {
        return BadRequest(ModelState);
    }

    _context.Country.Add(country);
    try
    {
        await _context.SaveChangesAsync();
    }
    catch (DbUpdateException)
    {
        if (CountryExists(country.CountryID))
        {
            return new StatusCodeResult(StatusCodes.Status409Conflict);
        }
        else
        {
            throw;
        }
    }

    return CreatedAtAction("GetCountry", new { id = country.CountryID }, country);
}
16
Arun Prasad E S

Vous n'envoyez pas l'en-tête Content-Type. Choisissez JSON (application/json) dans la liste déroulante près du pointeur de la souris sur votre première capture d'écran: Like this

34
Gebb

Cela a fonctionné pour moi (j'utilisais l'api dans l'itinéraire)

[Produces("application/json")]
[Route("api/Countries")]
public class CountriesController : Controller
{
    // POST: api/Countries
    [HttpPost]
    public async Task<IActionResult> PostCountry([FromBody] Country country)
    {
        if (!ModelState.IsValid)
        {
            return BadRequest(ModelState);
        }

        _context.Country.Add(country);
        try
        {
            await _context.SaveChangesAsync();
        }
        catch (DbUpdateException)
        {
            if (CountryExists(country.CountryID))
            {
                return new StatusCodeResult(StatusCodes.Status409Conflict);
            }
            else
            {
                throw;
            }
        }

        return CreatedAtAction("GetCountry", new { id = country.CountryID }, country);
    }
}

enter image description here

1
Arun Prasad E S