从脚本中获取数据
以下是一个示例网站:
http://www.indianyellowpages.com/business-services/advertising/< /a>
当您单击任何“查看联系方式”按钮(并注册,无需电子邮件确认)时,会弹出一个小窗口。如何使用 wget(或curl)从此窗口下载数据?
编辑:或者perl。
Here's an example website:
http://www.indianyellowpages.com/business-services/advertising/
When you click any of the 'View Contact Details' buttons (and register, no e-mail confirmation needed), a small window pops up. How would I download data from this window using wget (or curl)?
EDIT: Or perl.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 wget 或curl 来完成此操作。或 Perl。
正确的过程首先需要您记录一个“手动”会话,以准确弄清楚您的浏览器发送了哪些请求来实现其正在执行的操作。然后将其转换为正确的 wget 或curl 命令行或perl 脚本。或者无论如何。
You can do this with either wget or curl. or Perl.
The correct procedure would first involve you recording a "manual" session to figure out exactly what requests your browser sends to achieve what it's doing. Then you convert that into the proper wget or curl command line or perl script. Or whatever.