0
私はxamarinで新しいです。私はWebサービスを取得してjsonデータを追加したい。私は次のようにしようとします:Xamarinはパラメータweb32を取得します
var response = await client.GetAsync("myurl" + "?applicationid=" +
applicationId + "?siteid=" + siteId + "?userid=" + userId");
string responseJson = await response.Content.ReadAsStringAsync();
Debug.WriteLine("response:>" + responseJson);
しかし、コードはgetメソッドの後に実行されません。
私を助けてください。 ありがとうございます。 :)
最後に解決策を得て、 URL自体。 var response = await client.GetAsync( "mybaseurl" + "/ applicationid /" 1 "/ siteid /" 5 "/ userid /" + 25 "); –