I put my unity3d application on Facebook, but the login did not work because I need crossdomain.xml
in the root of host according to this doc. I put it into my website, and it works for me , but not on Facebook. I think that it needs to be put it into the root of app.facebook.com
.
This is my crossdomain.xml
:
<?xml version="1.0"?>
<cross-domain-policy>
<allow-access-from domain="*"/>
</cross-domain-policy>
Can you help me please?