• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved PHP Curl POST don't works with X-API-Key

Yannick Croteau

New Pleskian
I'm trying to build a PHP function to get a user loging link in PHP.

The user/pass method works very well

PHP:
function getLinkUrlWithUser($account, $username, $password, $server){

    $url = "https://" . $server . ":8443/api/v2/cli/admin/call";
    $request = array("params" => array("--get-login-link", "-user", $account));

    # Set curl request
    $ch = curl_init( $url );
    $payload = json_encode($request);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
    curl_setopt($ch, CURLOPT_USERPWD, $username . ":" . $password);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $payload );
    curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type:application/json", "Accept:application/json")) ;
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );

    # Send request.
    $result = curl_exec($ch);
    $curl_errno = curl_errno($ch);
    $curl_error = curl_error($ch);
    curl_close($ch);

    # Print response.
    if ($curl_errno > 0) {
        echo "cURL Error ($curl_errno): $curl_error <br/>";
        return "";
    }else{
        $data = json_decode($result);
        if($data->code == 0){
            return $data->stdout;
        }else{
            echo "Curl Error code: $data->code <br/>";
            echo "Error message: $data->stderr <br/>";
            return "";
        };
    };
  
}

but if i'm trying to use the X-API-Key with that one :

PHP:
function getLinkUrl($account, $secretKey, $server){

    $url = "https://" . $server . ":8443/api/v2/cli/admin/call";
    $request = array("params" => array("--get-login-link", "-user", $account));
    $key = "X-API-Key:$secretKey";

    $ch = curl_init( $url );
    $payload = json_encode($request);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
    curl_setopt($ch, CURLOPT_POSTFIELDS, $payload );
    curl_setopt($ch, CURLOPT_HTTPHEADER, array($key, "Content-Type:application/json", "Accept:application/json")) ;
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );

    # Send request.
    $result = curl_exec($ch);
    $curl_errno = curl_errno($ch);
    $curl_error = curl_error($ch);
    curl_close($ch);

    # Print response.
    if ($curl_errno > 0) {
        echo "cURL Error ($curl_errno): $curl_error <br/>";
        return "";
    } else {
        $data = json_decode($result);
        if($data->code == 0){
            return $data->stdout;
        }else{
            echo "Curl Error code: $data->code <br/>";
            echo "Error message: $data->stderr <br/>";
            return "";
        }
    }
    
}

I always get back :

code: 1
stderr: You have entered incorrect username or password.

Even if I call a new key, the same result.

P.S. My python variante works very well!

Thank you!
Yannick
 
So at the end my code is good. It was a typo in a passed parameter. But the return error gived me a bad clue. If I had a bad json form error or something like that should be more appropriate.

Thank you!
 
Back
Top