If I open the URL in a browser like Edge, then I get a response. Have you tested it with a browser, too?
Microsoft weather problem
The url:
https://tile-service.weather.microsoft.com/livetile/front/45.3033943, -92.86228
Has been working for years. It recently began returning nothing. I am using Windows 10, Visual Studio Express 2013 for windows desktop.
Please respond.
2 answers
Sort by: Most helpful
-
-
Ronald Chandler 41 Reputation points
2022-06-22T17:24:59.897+00:00 url = "https://tile-service.weather.microsoft.com/livetile/front/45.3033943,-92.86228"
My code:
request = WebRequest.Create(url)
response = request.GetResponse()
Using SR As New StreamReader(response.GetResponseStream)
document_response = SR.ReadToEndThis query has been working for years. Now document_response = nothing.
My development platform is Visual Studio Express for Windows Desktop using Windows 10.