我是Asp.net开发的新手,尝试执行e2e测试时遇到了困难。我想执行一个发布请求,并向我的服务器发送一个json对象。关键是我一直收到不受支持的媒体类型响应。
public async Task SomeMethod()
{
SomeClass myClass = new SomeClass()
{
Prop1 = "Prop1",
Prop2 = "Prop2"
};
var content = new StringContent(JsonConvert.SerializeObject(myClass));
var httpResponse = await _client.PostAsync("/myurl", content);
httpResponse.EnsureSuccessStatusCode();
}
我在做什么错了?