如何使用 python 发送原始帖子数据?
我正在尝试使用 python 将数据发布到网页。 Facebook上有一个游戏,邀请码是5个字母的组合。 我编写了一个脚本,将所有字母的组合写入一个 txt 文件。
这是我需要发布的数据。 http://pastie.org/2409481
这个 cookie 'bbbbb' 最终将成为一个变量,并将循环遍历所有5 个字母的可能组合。 [code]invite_code%5D=bbbbb[/code]
I'm trying to post data to a web page using python.
There is a game on facebook, and the invite codes are combinations of 5 letters.
I wrote a script that wrote all the combinations of letters to a txt file.
Here is the data I need to post.
http://pastie.org/2409481
This cookie 'bbbbb' will end up being a variable and will loop through all the possible combinations of 5 letters.
[code]invite_code%5D=bbbbb[/code]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 Requests,它是urllib2(我相信)。从该页面中删除一个示例:
您应该能够为
post_data
设置任何您想要的内容。Take a look at Requests, a wrapper for urllib2 (I believe). Ripping one of the examples off that page:
You should be able to set anything you want for
post_data
.