我已经将游戏上传到kongregate - 该游戏具有“保存到图库”功能,允许用户将屏幕截图保存到我服务器上的图库。但是,我无法正确设置crossdomain.xml文件以允许从kongregate访问我的服务器。这是我正在使用的代码:
pip freeze
<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="all"/>
<allow-access-from domain="kongregate.com" secure="false"/>
<allow-http-request-headers-from domain="kongregate.com" headers="kongregate.com" secure="false"/>
</cross-domain-policy>