在 cron 上更新网站数据的脚本
我刚刚开始研究一个想法,即我必须按照 cron 计划更新网站上的表单。
我遇到的问题是我有一个动态 IP 地址,我希望我的服务器通过 html 自动将 IP 地址更新到我的 DNS 提供商(不支持像 dyndns.org 这样的动态 DNS)。因此,理想情况下,我需要一个能够登录网站、更新表单并单击提交按钮的脚本。
这对于任何编程语言都是可能的吗?这一切都必须通过命令行完成,因为我使用的是 Ubuntu Server 10.04。
感谢您的任何意见。
I'm just starting to research an idea that I had to update a form on a website on a cron schedule.
The problem that I'm having is that I have a dynamic ip address and I would like my server to automatically update the ip address via html to my DNS provider (who doesn't support dynamic DNS like dyndns.org). So ideally, I would need to have a script that would be able to login to a website, update a form, and click the submit button.
Is this possible with any programming languages? This all has to be done via command line, as I'm using Ubuntu Server 10.04.
Thanks for any input.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很有可能。一个好的起点是带有 httplib2 模块的 python。
http://code.google.com/p/httplib2/
Very possible. A good place to start would be python with the httplib2 module.
http://code.google.com/p/httplib2/