Thanks for the formatting fix! Interesting. Ok that makes sense for that endpoint, but I have the same issue with the following helix endpoints:
public async Task GetCurrentUser()
{
var response = await client.GetAsync("https://api.twitch.tv/helix/users");
var test = 1;
}
public async Task<int> GetFollowerCount(string userId)
{
var response = await client.GetAsync($"http://api.twitch.tv/helix/users/follows?to_id={userId}");
return 0;
}