Retrieving the CURL authentication server-side
Posted
by Flavio Copes
on Stack Overflow
See other posts from Stack Overflow
or by Flavio Copes
Published on 2010-04-10T07:30:06Z
Indexed on
2010/04/10
7:33 UTC
Read the original article
Hit count: 339
I'm setting a CURL authentication, using CURLOPT_USERPWD:
curl_setopt($curl_handle, CURLOPT_USERPWD, $login); // Authenticate
How can I access this value server-side, so I can check it?
© Stack Overflow or respective owner