# 响应

响应将是 json 对象或页面的 html 代码,具体取决于您使用 &format= 参数(默认为 html)。

注意:404状态码的响应意味着要么爬取的页面没有到达存储区,要么已经发送 rid or url 是错的。

# 格式化 HTML

当您使用 &format=html.

Headers:
  "Content-Type" => "text/plain"
  "Content-Encoding" => "gzip"
  "stored_at" => "2020-10-01T18:24:23+03:00"
  "original_status" => 200
  "pc_status" => 200
  "rid" => RID
  "url" => URL

Body:
  The HTML of the page

# 格式 JSON

当您使用 &format=json.

Headers:
  "Content-Type" => "application/json"
Body:
{
  stored_at: "2020-10-01T18:24:23+03:00",
  pc_status: 200,
  original_status: 200,
  rid: RID,
  url: URL,
  body: "The HTML of the page"
}