J'ai une méthode qui fait un POST comme ci-dessous var response = await client.PostAsJsonAsync(url, entity); if (response.IsSuccessStatusCode) { // read the response as strongly typed object return await response.Content.ReadAsAsync<T>(); } Ma question est de savoir comment obtenir le JSON...