Query: curlopt_proxyuserpwd
OS: mojave
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
CURLOPT_PROXYUSERPWD(3) curl_easy_setopt options CURLOPT_PROXYUSERPWD(3)NAMECURLOPT_PROXYUSERPWD - user name and password to use for proxy authenticationSYNOPSIS#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_PROXYUSERPWD, char *userpwd);DESCRIPTIONPass a char * as parameter, which should be [user name]:[password] to use for the connection to the HTTP proxy. Both the name and the pass- word will be URL decoded before use, so to include for example a colon in the user name you should encode it as %3A. (This is different to how CURLOPT_USERPWD(3) is used - beware.) Use CURLOPT_PROXYAUTH(3) to specify the authentication method. The application does not have to keep the string around after setting this option.DEFAULTThis is NULL by default.PROTOCOLSUsed with all protocols that can use a proxyEXAMPLETODOAVAILABILITYAlwaysRETURN VALUEReturns CURLE_OK if proxies are supported, CURLE_UNKNOWN_OPTION if not, or CURLE_OUT_OF_MEMORY if there was insufficient heap space.SEE ALSOCURLOPT_PROXY(3), CURLOPT_PROXYTYPE(3), libcurl 7.54.0 December 21, 2016 CURLOPT_PROXYUSERPWD(3)
Related Man Pages |
---|
curlopt_password(3) - mojave |
curlopt_proxyauth(3) - mojave |
curlopt_proxyusername(3) - mojave |
curlopt_proxy_keypasswd(3) - mojave |
curlopt_proxy_tlsauth_password(3) - mojave |
Similar Topics in the Unix Linux Community |
---|
Likewise AD Authenication with proxy |
proxy server with wget or cli curl |
To enable proxy for a specific URL |