Fetch - Basic Usage
Fetch API 的靈感來自 JavaScript,它就像瀏覽器中的 AJAX 功能一樣,提供您方便地進行 HTTP Request 網路存取
Namespace
using ZapLib;HTTP GET
// 目標網址
Fetch f = new Fetch("https://www.youtube.com/results");
// Query String
var qs = new
{
search_query = "柴犬"
};
// 發出請求
string result = f.Get(qs);
Console.WriteLine(result);TLS 1.2 HTTPS
Download Resource
Fallback
Last updated