Microsoft weather problem

Ronald Chandler 41 Reputation points
2021-12-25T14:52:07.787+00:00

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.

Windows 10 Network
Windows 10 Network
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Network: A group of devices that communicate either wirelessly or via a physical connection.
2,384 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Olaf Helper 45,811 Reputation points
    2021-12-27T12:49:06.39+00:00

    If I open the URL in a browser like Edge, then I get a response. Have you tested it with a browser, too?


  2. 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.ReadToEnd

    This query has been working for years. Now document_response = nothing.

    My development platform is Visual Studio Express for Windows Desktop using Windows 10.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.