...
Updated address link should be similar like to following address with "apiKey" parameter added.
https://ertanmydomain.emakin.com/app/?/initiate/55....6b/c2...18/08...c8&apiKey=58ea0f3d.....90b984be905a
Sharing a screen anonymous access
...
Updated address link should be similar like to following address with "apiKey" parameter added.
https://ertanmydomain.emakin.com/app/?/report/55....6b/c2...18/08...c8&apiKey=58ea0f3d.....90b984be905a
Authenticated Access
You can also generate authentication tokens with rest api service GetToken method for specific user identity. After token is generated add token into address as "auth" parameter. Generated authentication tokens are limited to configured based time period and they can get expired. Please always generate new tokens as long as it's needed, and do not store in any place like disk or code.
Updated address link should be similar like to following address with "auth" parameter is added.
https://ertanmydomain.emakin.com/app/?/report/55....6b/c2...18/08...c8&auth=41AA3CE3CAFB41A....BF8114114
Embedding Form
You can embed emakin forms in a basic HTML IFrame tag like below;
...
Code Block |
---|
<html>
<body>
Hello!
<iframe src="https://ertan.emakin.com/app/?/initiate/55....6b/c2...18/08...c8&apiKey=58ea0f3d.....90b984be905a" width="100%" height="600" frameborder="0"></iframe>
</body>
</html> |
...