使用 python 将数据传递给 j_security_check
我的服务器上有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试先获取登录页面并存储 cookie。
这个 j_security_check-thingie 看起来像 acegi 安全的东西。
You could try GETing the login page first and storing the cookie.
This j_security_check-thingie looks like acegi security stuff.