Hello! 欢迎来到小浪资源网!


PHP Curl 如何添加身份验证?


PHP Curl 如何添加身份验证?

如何在 phpcURL 中添加身份验证

遇到这样的问题:

get /snapshot?ext=[jpg|png]&compress=[0.1-1]&orient=[0|1|2|3] http/1.1 host: [服务端 ip] auth: [验证串]

需要在 curl 中添加授权,但不知道如何使用哪个函数。

解决方法

立即学习PHP免费学习笔记(深入)”;

根据 stackoverflow 上的讨论(参考:http://stackoverflow.com/questions/20064271/how-to-use-basic-authorization-in-php-curl),可以使用 curl_setopt 函数:

curl_setopt($ch, CURLOPT_USERPWD, "<span style="color: #800080">$username</span>:<span style="color: #800080">$password</span>");

相关阅读