aryan Posted October 13, 2020 Share Posted October 13, 2020 Hello, I am having issue with single sign-on destination issue after login it redirect to other random destination to as specified. This is working on ONE WHMCS but not with Other i have checked on 2 installations one is working one is not below is the code: <?php $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://www.whmcsurlhere.com/includes/api.php'); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query( array( 'action' => 'CreateSsoToken', 'username' =>'token', 'password' =>'token', 'client_id' =>'1', 'destination' => '', 'service_id' => '', 'responsetype' => 'json', ) ) ); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($ch); curl_close($ch); print_r(json_decode($response, true)); ?> The above code destination is clientarea.php but on one installation same code works on other its not working and redirecting users to random pages. What would be the issue with the not working installations ? 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.