使用 cURL 填写外部表单?
任何人都可以建议我如何使用我自己的变量填写 此表单 并使用 cURL/ 提交它PHP?是否可能,因为它似乎使用 JavaScipt 而不是正常的“post”来提交内容。感谢您的帮助。
Can anyone suggest how I could fill in this form with my own variables and submit it using cURL/PHP? Is it possible, as it seems to use JavaScipt instead of the normal 'post' to submit the content. Thanks for the help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它使用 POST,但是它将表单数据提交到该页面上的多个 PHP 脚本。您最好下载 Firefox 版 TamperData 并检查与这些脚本的通信。
以下是我在 gist 上提交该表单时获得的信息。下面提供了一个示例会话:
It is using POST, however it submits the form data to several PHP scripts on that page. You would be best off downloading TamperData for Firefox and examining the communication to those scripts.
Here is the information I got when submitting that form on a gist. An example session is provided below:
它是通过 JavaScript 完成的。它为页面上的每个复选框提交一个发布请求
这些是您需要复制的功能:
It is done via javascript. It submits a post request for each checkbox on the page
These are the functions you need to replicate: