我是xamarin的新手。我想用get web服务添加一些json数据。我尝试如下:
var response = await client.GetAsync("myurl" + "?applicationid=" +
applicationId + "?siteid=" + siteId + "?userid=" + userId");
string responseJson = await response.Content.ReadAsStringAsync();
Debug.WriteLine("response:>" + responseJson);
但是在get方法之后没有执行代码。
请任何人帮助我。 提前致谢。 :)答案 0 :(得分:0)
最后得到了解决方案,用url本身传递值。 var response = await client.GetAsync(“mybaseurl”+“/ applicationid /”1“/ siteid /”5“/ u serid /”+ 25“);