我试图在WordPress中设置一个正确的cURL调用,所以我使用wp\\u remote\\u post()。但是,我无法通过wp\\u remote\\u post()对用户进行身份验证。您知道如何将以下内容转换为wp\\u remote\\u post中使用的内容吗?
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
正确的cURL basic auth的完整示例是
here.