Python - 请求状态代码


服务器接收并解释请求消息后,用 HTTP 响应消息进行响应。响应消息有一个状态代码。它是一个 3 位整数,其中状态代码的第一位数字定义响应的类别,最后两位数字没有任何分类作用。第一位数字有 5 个值:

状态代码

序列号 代码及说明
1 1xx:信息性

这意味着请求已收到并且该过程正在继续。

2 2xx:成功

这意味着该行动被成功接收、理解和接受。

3 3xx:重定向

这意味着必须采取进一步的行动才能完成请求。

4 4xx:客户端错误

这意味着请求包含不正确的语法或无法满足。

5 5xx:服务器错误

这意味着服务器无法满足明显有效的请求。

成功回应

在下面的示例中,我们从 url 访问文件并且响应成功。所以返回的状态码是200。

import urllib3
http = urllib3.PoolManager()

resp = http.request('GET', 'http://tutorialspoint.com/robots.txt')
print resp.data

# get the status of the response
print resp.status

当我们运行上面的程序时,我们得到以下输出 -

User-agent: *
Disallow: /tmp
Disallow: /logs
Disallow: /rate/*
Disallow: /cgi-bin/*
Disallow: /videotutorials/video_course_view.php?*
Disallow: /videotutorials/course_view.php?*
Disallow: /videos/*
Disallow: /*/*_question_bank/*
Disallow: //*/*/*/*/src/*

200

响应失败

在下面的示例中,我们从不存在的 url 访问文件。响应不成功。所以返回的状态码是403。

import urllib3
http = urllib3.PoolManager()

resp = http.request('GET', 'http://tutorialspoint.com/robot.txt')
print resp.data

# get the status of the response
print resp.status

当我们运行上面的程序时,我们得到以下输出 -

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access /robot.txt
on this server.</p>
</body></html>

403