これが私の最初だけでなく、今までにJSONを使用して、時間であるSystem.Net
とWebRequest
私のアプリケーションのいずれかで。私のアプリケーションは、以下のようなJSONペイロードを認証サーバーに送信することになっています。
{
"agent": {
"name": "Agent Name",
"version": 1
},
"username": "Username",
"password": "User Password",
"token": "xxxxxx"
}
このペイロードを作成するために、私はJSON.NET
ライブラリを使用しました。このデータを認証サーバーに送信し、そのJSON応答を受信するにはどうすればよいですか?これが私がいくつかの例で見たものですが、JSONコンテンツはありません:
var http = (HttpWebRequest)WebRequest.Create(new Uri(baseUrl));
http.Accept = "application/json";
http.ContentType = "application/json";
http.Method = "POST";
string parsedContent = "Parsed JSON Content needs to go here";
ASCIIEncoding encoding = new ASCIIEncoding();
Byte[] bytes = encoding.GetBytes(parsedContent);
Stream newStream = http.GetRequestStream();
newStream.Write(bytes, 0, bytes.Length);
newStream.Close();
var response = http.GetResponse();
var stream = response.GetResponseStream();
var sr = new StreamReader(stream);
var content = sr.ReadToEnd();
しかし、これは私が過去に使用した他の言語を使用することと比較して多くのコードのようです。私はこれを正しく行っていますか?そして、JSON応答を取得して、解析できるようにするにはどうすればよいですか?
ありがとう、エリート。
更新されたコード
// Send the POST Request to the Authentication Server
// Error Here
string json = await Task.Run(() => JsonConvert.SerializeObject(createLoginPayload(usernameTextBox.Text, password)));
var httpContent = new StringContent(json, Encoding.UTF8, "application/json");
using (var httpClient = new HttpClient())
{
// Error here
var httpResponse = await httpClient.PostAsync("URL HERE", httpContent);
if (httpResponse.Content != null)
{
// Error Here
var responseContent = await httpResponse.Content.ReadAsStringAsync();
}
}
WebClient.UploadString(JsonConvert.SerializeObjectobj(yourobj))
またはHttpClient.PostAsJsonAsync