- 29 May 2020
- 1 Minute zum Lesen
- Drucken
- DunkelLicht
- pdf
Hosted iFrame Wrapper
- Aktualisiert am 29 May 2020
- 1 Minute zum Lesen
- Drucken
- DunkelLicht
- pdf
You may host a landing page on your site with the client download page embedded in an iFrame. We have provided some sample code here for the implementation:
If you would like to pass the PIN through the URL via your own website, you will need to parse that from your landing page URL then simply append the pin to the end of the https://myhelpscreen.com/ URL. For example, if the PIN is 123456, the constructed URL would be: https://myhelpscreen.com/123456. You should configure your landing page to accept a query string parameter for the PIN, then use JavaScript to construct the iframe URL dynamically. Once your landing page is ready, please reach out to our support team and we will activate it for your organization as the default landing page URL.
Sample landing page wrapper:
<!DOCTYPE html/>
<html>
<head>
</head>
<body style="padding: 0px; margin:0px; height: 100%; min-height: 100vh;overflow:hidden">
<iframe src="https://myhelpscreen.com/" border="0" style="overflow:hidden;height:100%;width:100%;min-height: 100vh"/>
</body>
</html>