I'm trying to store/fetch data from my own backend in my Unity WebGL build. I want to host this build on Facebook Instant games.
-Security-Policy: The page's settings blocked the loading of a resource (connect-src) at https://mydomain.com/shop because it violates the following directive: "connect-src 'self' blob: data: https://apps-xxxx.apps.fbsbx.com/sandbox-instant-bundle https://apps-xxxx.apps.fbsbx.com/br-compress-sandbox-instant-bundle https://*.fbcdn.net https://platform-lookaside.fbsbx.com https://www.facebook.com/tr/ https://graph.fb.gg/xxxx/game_activities" test-final.loader.js:1:12936```
Content-Security-Policy: The page’s settings blocked the loading of a resource (media-src) at https://mydomain.com/files/video.mp4 because it violates the following directive: “media-src 'self' data: blob: https://.fbcdn.net https://.fbsbx.com”```
Facebook is not allowing this. I have added my domain to the "Domain Manager" in the app settings, and that has done nothing. From their FAQ : https://developers.facebook.com/docs/games/build/instant-games/faq/
Does my game need a backend?
When it comes to deciding where to store your information, you have several options:
Have a third-party backend your game communicates with via XMLHttpRequest, fetch, WebSocket or EventSource. This will mean more flexibility, but will also incur hosting costs proportional to your game's audience.
Use our SDK-based solutions, which enable server-side functionality out of the box. For storing player-specific information, use our player.getDataAsync and player.setDataAsync methods. For leaderboards, see our Leaderboard API guide.
Third party services like PlayFab provide fully cross-platform backend-as-a-surface platforms built to support LiveOps, matchmaking and analytics. Browse more tools.
So it is possible or is it not? What alternatives do I have to work this out?