Actionscript 3:读取需要身份验证的 RSS 提要
我有一个 RSS 源需要阅读,但您需要使用有效的用户名和密码登录才能获取该源。我想知道是否或如何使用 Actionscript 3 执行此操作。
现在我有一个非常简单的脚本,只需从提供的 url 获取 xml 并将其输出到控制台。
我已经验证它可以与不需要身份验证的提要一起使用。
如果需要代码或更具体的内容,请告诉我。
提前致谢!
I have an RSS feed that I need to read, but you need to log in with a valid username and password to get the feed. I was wondering if or how to do this using Actionscript 3.
Right now I have a very simple script that just gets the xml from a provided url and outputs the xml to the console.
I've verified that it works with a feed that doesn't require authentication.
Let me know if code or anything more specific is needed.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 http 服务,则可以通过扩展 HTTPService 来进行基本授权:
除了可以指定用户名和密码之外,您可以以相同的方式使用它:
If you're using an http service, you can do basic authorization with by extending the HTTPService :
You use it the same way except you can specify a username and password :