Friday, May 6, 2022

[SOLVED] cURL options in php - what option is -u

Issue

The reference I have lists an option as:

curl -u 'ExactID:Password'\

Does this mean for me to just use CURLOPT_USERPWD and use the format ExactID:Password?


Solution

Yes, the CLI -u option is equivalent to the PHP CURLOPT_USERPWD option, and the value is the same.



Answered By - Barmar
Answer Checked By - Katrina (WPSolving Volunteer)