顯示具有 HttpResponseMessage 標籤的文章。 顯示所有文章
顯示具有 HttpResponseMessage 標籤的文章。 顯示所有文章

2019年3月22日 星期五

【ASP.MVC】 post form body 表單方式 傳送到 另一個人家 網址 HttpResponseMessage


【ASP.MVC】 表單方式 傳送到 另一個人家 網址, 別人家url

FormUrlEncodedContent  <--- ---="" formbody="" p="">
只吃  IEnumerable ,你可以使用 Dictionary 


FormUrlEncodedContent formData = new FormUrlEncodedContent(Dictionary );


client.PostAsync("https://xxxxx/", formData).Result;

如果使用 ReadAsStringAsync  遇到收到資料亂碼的話,  

那就要你在產生 HttpResponseMessage 之後,必需給他 CharSet 為對方網頁格式 (比如:big5.utf8....)

這是表達 爬蟲的方法之一