0

こんにちは私は次のjQuery.postの例を持っており、Windows7電話SDKを使用してこれと同じリクエストを行う方法を知る必要があります。

任意の提案やポインタが適用されます。

jQuery.post('http://URL',{
      'key':'4ec6975151b8ea0d768f8599541e2ee30fb20a93',
      'function':'getGroupMembers',
      'parameters':{    
        "group":{
            'group_id':'44',
            'user_id':'100003167624583'
        }
    }      
  },
function(res){
   console.log(res);   
},'json');
4

1 に答える 1

0

WebClient.UploadStringAsync文字列を投稿し、結果を返します。JSON.NET (NuGet 経由または手動でダウンロード) を使用して、シリアル化/逆シリアル化できます。

WebClient client = new WebClient();

client.UploadStringCompleted += (s,e) =>
{
    var children = JToken.Parse(e.Result)["some_json_property"].Children();
    // continue here (but remember this is all asynchronous)
};

client.UploadStringAsync(
    new Uri("http://URI"),
    "POST",
    JsonConvert.SerializeObject(new
    {
        key = "4ec6975151b8ea0d768f8599541e2ee30fb20a93",
        function = "getGroupMembers",
        parameters = new {    
            group = {
                group_id = "44",
                user_id = "100003167624583"
            }
        }
    }));
于 2013-01-22T01:32:02.967 に答える