Conventionally, you can get the HTML of sites with this code But when I want to get the HTML of a Spotify public playlist, I face a problem (the HTML is not received, what's the problem?)
string HTML = string.Empty;
using (WebClient WC = new WebClient())
{
HTML = WC.DownloadString("https://open.spotify.com/playlist/72Yj5J3f9EfCwbD3MsBX8U");
}
I know! SpotifyAPI.NET can also be used, but I would like to solve this problem Thank