如何使用 python 发送原始帖子数据?

发布于 2024-11-30 17:31:16 字数 280 浏览 2 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧梦荧光笔 2024-12-07 17:31:16

看一下 Requests,它是urllib2(我相信)。从该页面中删除一个示例:

# This example cooked up by me!

import requests
post_data = {"amount":10000, "service":"writing blog posts"}

r = requests.post('http://example.com/api', post_data, auth=('user', 'pass'))

print r.status_code
print r.headers['content-type']

# ------
# 200
# 'application/json'

您应该能够为 post_data 设置任何您想要的内容。

Take a look at Requests, a wrapper for urllib2 (I believe). Ripping one of the examples off that page:

# This example cooked up by me!

import requests
post_data = {"amount":10000, "service":"writing blog posts"}

r = requests.post('http://example.com/api', post_data, auth=('user', 'pass'))

print r.status_code
print r.headers['content-type']

# ------
# 200
# 'application/json'

You should be able to set anything you want for post_data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文