6
POSTでJSONをWeb APIサービスに送信中にエラーが発生しました
Web APIを使用してWebサービスを作成しています。簡単なクラスを実装しました public class ActivityResult { public String code; public int indexValue; public int primaryCodeReference; } そして、私は自分のコントローラーの中に実装しました [HttpPost] public HttpResponseMessage Post(ActivityResult ar) { return new HttpResponseMessage(HttpStatusCode.OK); } しかし、POSTでファイルjsonを渡してAPIを呼び出すと: {"code":"XXX-542","indexValue":"3","primaryCodeReference":"7"} 次のエラーメッセージが表示されます。 { "Message": "The request entity's media type 'text/plain' is not supported for this resource.", "ExceptionMessage": "No MediaTypeFormatter is available to …