Load a game
Overview
When you get the srcUrl from the Get a Product endpoint, you'll need to load it into an iframe (or any other embedding method) by appending the clientId to the URL as a query parameter.
Note
The clientId is very important as This allows you to authenticate and interact with the product correctly.
How to Load the srcUrl in an iframe
To load the srcUrl into an iframe, append the clientId to the URL like:
srcUrl?clientId='your client Id'
for example
Iframe example
<iframe
src="srcUrl?clientId=your-client-id">
</iframe>