Jump to content

WHMCS single sign-on destination issue


aryan

Recommended Posts

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 ?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated