web-dev-qa-db-ja.com

Web APIへの投稿時のサポートされていないメディアタイプエラー

Windows Phoneアプリケーションを作成しています。WebApiから簡単に取得できますが、投稿に問題があります。 APIに投稿するたびに「サポートされていないメディアタイプ」エラーメッセージが表示され、JSON投稿のベースとして使用しているクラスがAPIで使用されているものと同じであると考える理由がわかりません。

PostQuote(Postメソッド)

private async void PostQuote(object sender, RoutedEventArgs e)
        {
            Quotes postquote = new Quotes(){
                QuoteId = currentcount,
                QuoteText = Quote_Text.Text,
                QuoteAuthor = Quote_Author.Text,
                TopicId = 1019
            };
            string json = JsonConvert.SerializeObject(postquote);
            if (Quote_Text.Text != "" && Quote_Author.Text != ""){

                using (HttpClient hc = new HttpClient())
                {
                    hc.BaseAddress = new Uri("http://rippahquotes.azurewebsites.net/api/QuotesApi");
                    hc.DefaultRequestHeaders.Accept.Clear();
                    hc.DefaultRequestHeaders.Accept.Add(new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue("application/json"));
                    HttpResponseMessage response = await hc.PostAsync(hc.BaseAddress, new StringContent(json));
                    if (response.IsSuccessStatusCode)
                    {
                        Frame.Navigate(typeof(MainPage));
                    }
                    else
                    {
                        Quote_Text.Text = response.StatusCode.ToString();
                        //Returning Unsupported Media Type//
                    }
                }
            }
        }

引用とトピック(モデル)

public class Quotes
    {
        public int QuoteId { get; set; }
        public int TopicId { get; set; }
        public string QuoteText { get; set; }
        public string QuoteAuthor { get; set; }
        public Topic Topic { get; set; }
        public string QuoteEffect { get; set; }
    }
    //Topic Model//
    public class Topic
    {
        public int TopicId { get; set; }
        public string TopicName { get; set; }
        public string TopicDescription { get; set; }
        public int TopicAmount { get; set; }
    }
25
Billson

this および this の記事でわかるように、StringContentを作成するときにメディアタイプを設定する必要があります

new StringContent(json, Encoding.UTF32, "application/json");
48
Pedro Drewanz

迅速で汚れたリバースプロキシで作業しているときに、この質問を見つけました。 JSONではなくフォームデータが必要でした。

これは私のためにトリックをしました。

string formData = "Data=SomeQueryString&Foo=Bar";
var result = webClient.PostAsync("http://XXX/api/XXX", 
        new StringContent(formData, Encoding.UTF8, "application/x-www-form-urlencoded")).Result;
3
Robert Stokes