You can use our API to generate a SSO link to log in your users from an intranet portal or from a franchisee/partner account's dashboard. Here is a PHP script to do that:
<?php $email = "youremailaddress@example.com"; $timestamp = time()*1000; $sessionTimeout = "600000"; $ssoToken = "8a7e65............"; echo "https://app.agendize.com/sso/1.0/sso?email=$email&ts=" . $timestamp . "&mac=" . hash_hmac ("sha256", $email . $timestamp . $sessionTimeout, $ssoToken) . "&errorPage=http://app.agendize.com?error"; ?>
Julien Pauthier
You can use our API to generate a SSO link to log in your users from an intranet portal or from a franchisee/partner account's dashboard. Here is a PHP script to do that: