大家好知道如何在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);
答案 0 :(得分:0)
如果您有复杂的json,可以使用RestSharp
发布数据并解析响应。
否则,设置Content-type
标题:json/application
告诉服务器它是json