1. 程式人生 > >python3.6爬蟲總結-01

python3.6爬蟲總結-01

zed 3.6 執行 pre created highlight log style size

1. HTTP 簡介

HTTP常見狀態碼

200/OK: 請求成功
201/Created: 請求已被實現,且一個新資源已根據請求被建立,URI跟隨Location頭信息返回。
202/Accepted: 服務器已接受請求,但尚未處理。
400/Bad Request: 請求無法被服務器理解
401/Unauthorized: 當前請求需要用戶驗證
403/Forbidden: 服務器已理解請求,但拒絕執行。
404/Not Found:請求服務不存在

python3.6爬蟲總結-01