使用用户名和密码发送 POST 请求并保存会话 cookie
使用用户名和密码发送 POST 请求后,如何使用 Jsoup 保存 cookie?或者我必须首先将它们提供给连接对象然后保存?
How can I save cookies with Jsoup after sending a POST request with username and password? Or must I first provide them to connection object and then save?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设 HTML 表单如下所示:
您可以 POST 它并获取 cookie,如下所示:
您可以在后续请求中传回 cookie,如下所示:
或者如果您知道各个 cookie 名称:
Assuming that the HTML form look like below:
You can POST it and obtain cookies as below:
You can pass cookies back on subsequent requests as below:
Or if you know the individual cookie name: