How to integrate Pick-4-Win app into an iframe:
https://engagearena.xyz/[locale]/contests-list
as the default iframe URL to show the contest list page.[locale]
in the URL with the desired language code. For example:/en/contests-list
for English?token=YOUR_TOKEN
?auth_url=example.com/login
. If not provided, the system will attempt to use window.parent.location.origin
or document.referrer
by default.?reg_url=example.com/register
. If not provided, the system will attempt to use window.parent.location.origin
or document.referrer
by default.&action_url=example.com/action
. If not provided, the system will attempt to use window.parent.location.origin
or document.referrer
by default.Example: Embed iframe in parent page
<iframe
src="https://engagearena.xyz/en/contests-list?auth_url=example.com®_url=example.com&action_url=example.com&token=YOUR_TOKEN"
width="1130px"
height="820px"
frameborder="0"
></iframe>