0
我正在從facebook和twitter將配置文件圖像加載到Flex應用程序中。根據回答from this question,我正在從重定向的網址加載域策略。不過,現在我看到這個錯誤:Flex忽略策略文件
Error: [strict] Ignoring policy file at http://profile.ak.fbcdn.net/ due
to missing Content-Type. See http://www.adobe.com/go/strict_policy_files
to fix this problem.
從URL中的crossdomain.xml文件看起來是這樣的:
<cross-domain-policy>
<allow-access-from domain="*" secure="false" to-ports="*"/>
<site-control permitted-cross-domain-policies="master-only"/>
</cross-domain-policy>
的錯誤指出存在丟失的Content-Type。我如何解決這個問題?顯然,我無法更新Facebook的文件。
任何幫助表示讚賞。
再次,你是正確的。謝謝! – swatkins