在使用 curl 向支持验证的 api 发送请求时,可以使用以下步骤进行添加:
- 设置 curl 选项 curlopt_userpwd
curl_setopt($ch, curlopt_userpwd, "<username>:<password>");
其中,
- 设置 curl 选项 curlopt_httpauth
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
这将设置基本验证类型。
立即学习“PHP免费学习笔记(深入)”;
通过这些步骤,即可将验证信息添加到 curl 请求中。