Details
Description
We have a customer using a reseller user on WHM/cPanel, but the token appears to be correct and it appears to have proper permissions. However, the logs show the following error:
eneral.ERROR: curl_exec threw error "HTTP/2 stream 1 was not closed cleanly: PROTOCOL_ERROR (err 1)" for [hostname]:2087/json-api/listaccts? (same for listpkgs if we force the credentials and try to create a Package)
The error seems to indicate that WHM is requiring HTTP/2 and that curl cannot communicate with HTTP/2
On line 775, after curl_init() in apis/cpanel_api.php I added the following in an attempt to force HTTP/1.1
curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); // Force HTTP/1.1
It no longer produced the curl error, but if I add some debugging right after curl_close($curl) of
var_dump($result);
die;
Saving the module row credentials page outputs:
string(90) "<html><body><h1>400 Bad request</h1>
Your browser sent an invalid request.
</body></html>
"
to test via SSH/CLI
curl -v -H "Authorization: WHM USER:TOKEN" "https://HOSTNAME:2087/json-api/listpkgs"
Running this via SSH with the correct data does return the packages