Nearly always your server telling the browser not to allow framing: remove X-Frame-Options and allow avogames in your CSP.
Content-Security-Policy: frame-ancestors https://avogames.com
- The URL is http:// while avogames is https:// — the browser blocks mixed content.
- A redirect in the chain drops to http:// or lands somewhere that blocks framing.
- Cookies your game relies on are not
SameSite=None; Secure, so they are dropped inside a third-party frame. - The page requires a login your player does not have — embeds get no session from you.
Test with your own page embedded in a plain HTML file on another domain. If it fails there, it will fail here.
Related articles
Still stuck? Submit a request and include your game's dashboard link.