Şu anda bir wp8.1 uygulaması geliştiriyorum C#, json'da bir POST yöntemi gerçekleştirmeyi json nesnesi oluşturarak api'mde gerçekleştirdim (bm) textbox.texts dosyasından aşağıda benim kodum. Aynı textbox.text dosyasını nasıl alabilirim ve bunları bir içerik türü olarak = POSTLUT/x-www-form-urlencoded olarak kullanır. Bunun için kod nedir?HTTPclient içerik türünü kullanarak POST nasıl kullanılır = application/x-www-form-urlencoded
Profile bm = new Profile();
bm.first_name = Names.Text;
bm.surname = surname.Text;
string json = JsonConvert.SerializeObject(bm);
MessageDialog messageDialog = new MessageDialog(json);//Text should not be empty
await messageDialog.ShowAsync();
HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Clear();
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.TryAddWithoutValidation("Content-Type", "application/json");
byte[] messageBytes = Encoding.UTF8.GetBytes(json);
var content = new ByteArrayContent(messageBytes);
content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
var response = client.PostAsync("myapiurl", content).Result;
benim API yalnızca izin veriyor İçerik türü = application/x-www-form-urlencoded –