在Ruby语言中,如何向需要认证的网页发布数据?
我使用e-texteditor
作为我的主要编辑器,在其中可以直接执行动态语言,例如Ruby、Python、Perl
等。现在我想用这个编辑器直接发布到我的博客上。不过,博客需要身份验证(用户名和密码)。如何将数据发布到此类页面?
谢谢。
I use e-texteditor
as my primary editor, in which you can execute dynamic languages directly, such as Ruby, Python, Perl
etc. Now I want to write blog post in this editor and post it to my blog directly. Though, the blog need authentication(username and password). How can I post data to this kinda of pages?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够使用 mechanize 来完成此操作。它模拟真实的浏览器,并且非常强大。唯一缺少的主要功能是 javascript 引擎,因此如果博客在身份验证中使用 javascript,它将无法工作。
You should be able to do this with mechanize. It emulates a real broswer, and is quite powerful. About the only major feature lacking is a javascript engine, so it won't work if the blog uses javascript in its authentication.