I am able to implement http basic auth in wp_remote_get
using the following code
$args = array(
'headers' => array(
'Authorization' => 'Basic ' . base64_encode( $username . ':' . $password )
)
);
wp_remote_request( $url, $args );
Is it possible to do http digest based authentication using wp_remote_get
function?