Nowadays you can just use the normal AuthenticationHeaderValue:
AuthenticationHeaderValue
_httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue(token);
There is even a example in the docs