鱼C论坛

 找回密码
 立即注册
查看: 1174|回复: 6

[已解决]关于爬虫的一个小问题

[复制链接]
发表于 2020-6-30 16:08:14 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
这里面这个word :hello的目的是干嘛的
import urllib.request
import urllib.parse

data = bytes(urllib.parse.urlencode({'word':'hello'}),encoding = 'utf-8')
print(data)
response = urllib.request.urlopen('http://www.baidu.com',data = data)
html = response.read()
print(html)
最佳答案
2020-6-30 16:17:30
这里的'word':'hello'就是POST提交的数据,捕捉到的Request Details如下:
POST / HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Host: www.baidu.com
User-Agent: Python-urllib/3.8
Connection: close
Accept-Encoding: identity
Content-Length: 10

word=hello

其实这个POST的数据有点问题,返回内容如下,跳转到百度错误页面了
HTTP/1.1 302 Found
Bdpagetype: 3
Content-Type: text/html
Date: Tue, 30 Jun 2020 08:10:08 GMT
Location: https://www.baidu.com/search/error.html
Server: BWS/1.1
Set-Cookie: BDSVRTM=0; path=/
Traceid: 159350460801994787946390024816122759431
X-Ua-Compatible: IE=Edge,chrome=1
Connection: close
Content-Length: 154

<html>
<head><title>302 Found</title></head>
<body bgcolor="white">
<center><h1>302 Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-6-30 16:17:30 | 显示全部楼层    本楼为最佳答案   
这里的'word':'hello'就是POST提交的数据,捕捉到的Request Details如下:
POST / HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Host: www.baidu.com
User-Agent: Python-urllib/3.8
Connection: close
Accept-Encoding: identity
Content-Length: 10

word=hello

其实这个POST的数据有点问题,返回内容如下,跳转到百度错误页面了
HTTP/1.1 302 Found
Bdpagetype: 3
Content-Type: text/html
Date: Tue, 30 Jun 2020 08:10:08 GMT
Location: https://www.baidu.com/search/error.html
Server: BWS/1.1
Set-Cookie: BDSVRTM=0; path=/
Traceid: 159350460801994787946390024816122759431
X-Ua-Compatible: IE=Edge,chrome=1
Connection: close
Content-Length: 154

<html>
<head><title>302 Found</title></head>
<body bgcolor="white">
<center><h1>302 Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-6-30 16:22:50 | 显示全部楼层
post提交的数据呀,你post总得post个什么东西吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-6-30 16:24:49 | 显示全部楼层
comeheres 发表于 2020-6-30 16:17
这里的'word':'hello'就是POST提交的数据,捕捉到的Request Details如下:

这个内容你是打印出来的还是自己去网页的开发者人员工具里面复制来的?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-6-30 16:26:34 | 显示全部楼层
小甲鱼的铁粉 发表于 2020-6-30 16:24
这个内容你是打印出来的还是自己去网页的开发者人员工具里面复制来的?

HTTP Debugger抓取的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-6-30 16:27:08 | 显示全部楼层

能个让我看一下你的代码吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-6-30 16:34:25 | 显示全部楼层
小甲鱼的铁粉 发表于 2020-6-30 16:27
能个让我看一下你的代码吗?

代码就是你贴的代码,然后打开HTTP Debugger,再运行代码,就能捕捉到数据了

Snipaste_2020-06-30_16-33-07.png

Snipaste_2020-06-30_16-34-12.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-20 04:42

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表