Participant Auto Authentication
If your program is configured to have participants login/authenticate, you can set up Participant Auto Authentication to automatically log participants into their browser.
Last updated
Was this helpful?
Was this helpful?
<script type="text/javascript">
window.grsfConfig = {
email: "[email protected]", // Replace this with the participant's email address
hash: "HASH_VALUE" // Replace this with the SHA-256 HMAC value
};
(function(g,r,s,f){g.growsurf={};g.grsfSettings={campaignId:"k1o87e",version:"2.0.0"};s=r.getElementsByTagName("head")[0];f=r.createElement("script");f.async=1;f.src="http://localhost:3000/static/growsurf.js"+"?v="+g.grsfSettings.version;f.setAttribute("grsf-campaign", g.grsfSettings.campaignId);!g.grsfInit?s.appendChild(f):"";})(window,document);
</script>require("crypto")
.createHmac("sha256", "<YOUR_SECRET>")
.update("[email protected]")
.digest("hex");