在C# 中進行cURL 呼叫:了解選項
從C# 控制台應用程式進行cURL 呼叫時,重要的是要考慮用於實現HTTP 請求的可用選項。雖然 cURL 不是直接呼叫的,但開發者有多種選擇:
轉換為 HTTP 請求
將 cURL 呼叫轉換為 HTTP 請求並不總是必要的。在許多情況下,可以使用上述選項之一直接進行 cURL 呼叫。
對於您的特定 cURL 呼叫:
curl -d "text=This is a block of text" \ http://api.repustate.com/v2/demokey/score.json
您可以將其作為常規 HTTP POST 請求發送帶有表單編碼的有效負載。
撥打電話HttpClient
HttpClient 是建議的方法,提供更高級的功能和更清晰的語法:
using System.Net.Http; using System.Net.Http.Formatting; var client = new HttpClient(); var requestContent = new FormUrlEncodedContent(new[] { new KeyValuePair<string, string>("text", "This is a block of text"), }); HttpResponseMessage response = await client.PostAsync( "http://api.repustate.com/v2/demokey/score.json", requestContent); HttpContent responseContent = response.Content; using (var reader = new StreamReader(await responseContent.ReadAsStreamAsync())) { Console.WriteLine(await reader.ReadToEndAsync()); }
以上是如何在 C# 中將 cURL 呼叫轉換為 HTTP 請求?的詳細內容。更多資訊請關注PHP中文網其他相關文章!