Flash 安全错误 - Twitter API

发布于 2024-08-10 12:09:36 字数 476 浏览 7 评论 0原文

我正在尝试在 Flash 应用程序中使用 Twitter API。它在本地 Flash IDE 中工作,但当我将其上传到我的服务器时不起作用。我收到此错误:

错误#2044:未处理的安全错误:。 text=错误#2048:安全 沙箱违规:http//alpha.{oursite}.com/flash/twitterticker.swf 无法从中加载数据 http://twitter.com/statuses/user_timeline/{ouraccount}.xml。

[忽略错误消息中的 http:// 中缺少“:” - 我还没有足够的声誉来发布多个超链接 :-)]

当我查看 Charles 时,似乎该错误与在 Twitter 的 crossdomain.xml 文件中找不到我的网站条目有关。据我所知,这不是使用他们的 API 的要求。我有什么遗漏的吗?

蒂亚!

史蒂夫·W

I'm trying to hit the Twitter API in my Flash application. It works in the local Flash IDE, but doesn't work when I upload it to my server. I'm getting this error:

Error #2044: Unhandled securityError:. text=Error #2048: Security
sandbox violation: http//alpha.{oursite}.com/flash/twitterticker.swf
cannot load data from
http//twitter.com/statuses/user_timeline/{ouraccount}.xml.

[ignore the lack of a ":" in the http:// in the error msg - I don't have enough of a reputation yet to post more than one hyperlink :-)]

When I look in Charles, it appears that the error is related to not finding an entry for my website in Twitter's crossdomain.xml file. As far as I know, this is not a requirement to use their API. Is there something I'm missing?

TIA!

Steve W

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

厌倦 2024-08-17 12:09:36

查看 http://twitter.com/crossdomain.xml 上的跨域文件,您将不会能够直接从flash调用twitter API。

您要么需要服务器端代理,要么使用ExternalInterface 双向通信,因为javascript 可以使用JSONP 绕过沙箱。twitter

API 站点有几个指向Flash 的现成书面twitter 实现的链接。也许您可以使用他们的服务器端代理之一。

Looking at the crossdomain file at http://twitter.com/crossdomain.xml you won't be able to directly call the twitter API from flash.

You are going to either need a serverside proxy, or use ExternalInterface bi-directional communication since javascript can bypass the sandbox using JSONP

The twitter API site has several links to ready written twitter implementations for Flash. Maybe you can use one of their serverside proxies.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文