PHP cURL Basic Authentication Alternatives for CURLOPT_HTTPHEADER & CURLOPT_USERPWD…?
问题 Are there any alternatives to using CURLOPT_HTTPHEADER & CURLOPT_USERPWD for supplying Basic Authentication for cURL PHP? I have a super long password, so CURLOPT_USERPWD wont work as it truncates at 256 characters. curl_setopt($data, CURLOPT_USERPWD, $username . ":" . $password); And I would like to stay away from using CURLOPT_HTTPHEADER for security reasons. curl_setopt($data, CURLOPT_HTTPHEADER, "Authorization: Basic " . base64_encode($username . ":" . $password)); Any alternatives? 回答1: