PHP CURL设置Authorization

Posted hwzzbe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP CURL设置Authorization相关的知识,希望对你有一定的参考价值。

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $linkUrl);

curl_setopt($ch, CURLOPT_VERBOSE, 1);

curl_setopt($ch, CURLOPT_FAILONERROR, false);

curl_setopt($ch, CURLOPT_CUSTOMREQUEST, ‘POST‘);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($ch, CURLOPT_HTTPHEADER, [‘Content-Type:application/x-www-form-urlencoded‘]);

//设置凭证
curl_setopt($ch, CURLOPT_USERPWD, ‘user:pwd‘);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);

以上是关于PHP CURL设置Authorization的主要内容,如果未能解决你的问题,请参考以下文章

PHP CURL设置Authorization

PHP-curl

php curl设置ssl版

php—cURL库基本用法总结

PHP 使用 fsockopen/cURL 设置浏览器代理

php curl host 设置访问指定主机