Okay, so just to make sure, the only change is:
curl_setopt($session, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
to
curl_setopt($session, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
As well as making the PHP script be called over https, instead of http, correct?
... View more