如何在Windows手机的http请求中发送/发布JSON

时间:2012-01-25 05:33:13

标签: json windows-phone-7 httpwebrequest xmlhttprequest

大家好知道如何在Windows Phone 7中发送或发布JSON httprequest。我只使用xml httprequest发送和发布参数。

我在JSON中应用,它返回一个错误。请告诉我哪一个更简单,更快速的Windows Phone httprequest是否JSON / XML请求。我将选择使用Web服务开发Windows Phone应用程序的服务。

string postData = "{metaData:{appVersion:1.40},....}"; 
byte[] byteArray = System.Text.Encoding.UTF8.GetBytes(postData); 
postStream.Write(byteArray, 0, postData.Length); 
postStream.Close(); 

// Start the asynchronous operation to get the response 
request.BeginGetResponse(new AsyncCallback(GetResponseCallback), request);

1 个答案:

答案 0 :(得分:0)

如果您有复杂的json,可以使用RestSharp发布数据并解析响应。

否则,设置Content-type标题:json/application告诉服务器它是json