Google 电子表格:来自 Flex 的安全错误

发布于 2024-11-09 01:17:32 字数 128 浏览 0 评论 0 原文

我有一个应用程序,它使用谷歌电子表格来填充菜单和一些相关页面。在调试中效果很好,但在发布时给出“安全错误”。

似乎某些谷歌服务(例如 picasa)允许 Flex 应用程序访问它们。 google docs 是不是这样打不开?

I have an app that uses a google spreadsheet to populate a menu and some related pages. Works great in debug but gives the "security error" when released.

It seems like some google services (eg picasa) permit flex apps to access them. Is google docs not open this way?

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

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

发布评论

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

评论(1

夕嗳→ 2024-11-16 01:17:32

您正在检查的 API URL 是什么?该 URL 是否有 CrossDomain.xml 文件?如果不;那么您就无法直接从 Flex(或 Flash Player)应用程序访问它。您必须使用某种代理。

大多数人在服务器端实现代理。基本上,您的 Flex 应用程序将调用代理并发送适当的数据。然后,代理将调用 API(在本例中为 Google Docs),获取该调用的结果,然后将结果返回给 Flex 应用程序。

经过快速搜索,我找到了这个页面。您是否正在尝试访问 Spreadsheets.google.com 网址?如果是这样,请检查它的 crossdomain.xml 文件。它似乎阻止了所有访问。

What is the API URL you are checking? Does that URL have a CrossDomain.xml file? If not; then you can't access it directly from a Flex (or Flash Player) app. You'll have to use a Proxy of sorts.

Most people implement Proxy's on the server side. Basically, your Flex app will call the proxy and send the appropriate data. The proxy will then call the API (in this case Google Docs), get the results of that call, and then return the results to the Flex app.

Doing a quick search, I found this page. Are you trying to access the spreadsheets.google.com URL? If so, check out it's crossdomain.xml file. It appears to prevent all access.

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