Google 电子表格:来自 Flex 的安全错误
我有一个应用程序,它使用谷歌电子表格来填充菜单和一些相关页面。在调试中效果很好,但在发布时给出“安全错误”。
似乎某些谷歌服务(例如 picasa)允许 Flex 应用程序访问它们。 google docs 是不是这样打不开?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在检查的 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.