使用 python 将数据传递给 j_security_check

发布于 2024-10-02 10:44:06 字数 163 浏览 3 评论 0原文

我的服务器上有一个 j_security_check 页面,我需要将数据传递给它。我使用 Python urllib2 模块,发送带有 j_username 和 j_password 作为参数的 POST 请求。问题是我有 HTTPError 408 作为响应:“已超出登录过程允许的时间”。 我应该用它做什么?

I have a j_security_check page on a server, and I need to pass data to it. I use Python urllib2 module, sending POST-request with j_username and j_password as parameters. The problem is that I have HTTPError 408 as a response: "The time allowed for the login process has been exceeded".
What should I do with it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

魂ガ小子 2024-10-09 10:44:06

您可以尝试先获取登录页面并存储 cookie。
这个 j_security_check-thingie 看起来像 acegi 安全的东西。

import urllib, urllib2

opener = urllib2.build_opener(urllib2.HTTPCookieProcessor)
urllib2.install_opener(opener)
urllib2.urlopen('http://server/login_form/')
urllib2.urlopen('http://server/j_security_check',
 data=urllib.urlencode({'j_username':'scott','j_password':'wombat'}))

You could try GETing the login page first and storing the cookie.
This j_security_check-thingie looks like acegi security stuff.

import urllib, urllib2

opener = urllib2.build_opener(urllib2.HTTPCookieProcessor)
urllib2.install_opener(opener)
urllib2.urlopen('http://server/login_form/')
urllib2.urlopen('http://server/j_security_check',
 data=urllib.urlencode({'j_username':'scott','j_password':'wombat'}))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文