发送 HTTP 请求并读取响应。
reqwest(url).send()
url
https://example.com
Object:响应对象,包含 status: Int、body: String、text: String、headers: Object。
Object
status: Int
body: String
text: String
headers: Object
res = reqwest('https://example.com').timeout(3000).send()