如何在 ActionScript 中读写 http 标头?
是否可以在 ActionScript 中读取和写入 http 标头?
Is it even possible to both read and write http headers in actionscript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯...好吧,设置它们似乎不是问题。
非常简单,您只需将 URLRequestHeader 对象数组添加到 URLRequest 对象即可。
但是,您无法在常规 FlashPlayer 中阅读它们。这可以在 AIR 和 Flash Lite 中使用 HTTPStatusEvent 的 requestHeader 属性来完成。
这有点奇怪。
Hmm... ok setting them doesn't seem to be a problem.
Pretty straight forward, you just add and array of URLRequestHeader objects to the URLRequest object.
However, you can't read them in the regular FlashPlayer. This can be done in AIR and Flash Lite on using the requestHeader property on the HTTPStatusEvent.
This is kinda weird.