No recent searches
Popular Articles
Sorry! nothing found for
Posted over 1 year ago by Julien Pauthier
You can use our API to generate a sign-on 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 = "yourUserLoginOrEmailAddress@example.com"; // The user login $timestamp = time()*1000; $sessionTimeout = "600000"; // Link validity $ssoToken = "8a7e65............"; header("Location: https://app.agendize.com/sso/1.0/sso?email=" . urlencode($email) . "&ts=" . $timestamp . "&mac=" . hash_hmac ("sha256", $email . $timestamp . $sessionTimeout, $ssoToken) . "&errorPage=http://app.agendize.com?error"); ?>
0 Votes
0 Comments
Login or Sign up to post a comment
People who like this
This post will be deleted permanently. Are you sure?
You can use our API to generate a sign-on 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:
0 Votes
0 Comments
Login or Sign up to post a comment