I sell lots of music on eBay. I have a tool that takes in a URL of an album on Discogs.com and creates an information panel that I then copy into an eBay item description. The I use System.Net.Webclient.Downloadstring() to download the page's source, then Regex expressions to pull out the album information I need. This has worked fine for months, but for a couple days now, I get this error:
"The underlying connection was closed: An unexpected error occurred on a send."
I get this error when trying to use DownloadString() on ANY discogs.com page. I can load these pages in a browser just fine. Here's a random example of an album page: https://www.discogs.com/Apocalyptica-7th-Symphony/release/6520402
Dim wbClient As New WebClient
wbClient.Encoding = UTF8Encoding.UTF8
wbClient.Headers.Add("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)")
Dim strPageData As String = wbClient.DownloadString("https://www.discogs.com/" & strPageURL)