# 回应

响应将是 json 对象或页面的使用代码,具体说明您的使用 &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"
}