


When the security token restriction type is selected, a secret security key is generated. This key is unique for the Page, so it cannot be reused for other Pages. To copy the security key for pasting purposes, click the copy button.
To calculate the security token for a specific remote IP, concatenate the IP number as text, a hyphen (minus) and the security key as a string, and then make an SHA-256 hash of the string.
Assuming we have a Java method sha256 which calculates the SHA-256 hash, the statement for calculating the security token is:
String securityToken = sha256( remoteIP + "-" + securityKey );To access the Page, the viewer's link must contain the parameter sid whose value must be the security token specific to their IP.
As an example, assume that the remote IP is 185.185.168.162 and the secret key is dc5a7f467f01fb7d9962b2062d24775c559edb50569f2d7b9588850dd21e75a5.
For viewers from this remote IP, the security token needed is the SHA-256 of 185.185.168.162-dc5a7f467f01fb7d9962b2062d24775c559edb50569f2d7b9588850dd21e75a5.
The correct security token in this case is 4c4163263e408f5fa04eebd71f2ee2ccc4686b1119f95a5a415bd0b2701fa4a5.
Assuming the Video Page URL for this example Page is
a viewer from 185.185.168.162 can use a link such as
https://suiterc.icareus.com/web/test-account/embed/videos?groupItemId=3102202&sid=4c4163263e408f5fa04eebd71f2ee2ccc4686b1119f95a5a415bd0b2701fa4a5
to access the event. Without the correct sid, the viewer will only see an empty web page.