I\'d like to see what the post fields in the request are before I send it. (For debugging purposes).
The PHP library (class) I am using is already made (not by me),
To just get the info of a CURL request do this:
$response = curl_exec($ch); $info = curl_getinfo($ch); var_dump($info);