When I connect to the URL through the web client, it returns an internal backend error. I can just visit this URL in my browser. This worked for months and the problem started yesterday. No changes at my end. I understand that status code 500 is a server error, but I wanted to see if there is anything else that I could do at this point, as I am worried.
Example url: http://www.myfitnesspal.com/reports/printable_diary/chuckgross?from=2015-07-17&to=2015-07-17
The code:
string results;
using (var client = new WebClient())
{
results = client.DownloadString(url);
}
This gives an exception: an error occurred on the remote server: 500.
Using Fiddler, I see a return page, which is their βSite Downβ page with the message: βSorry, but a server error occurred while processing your request. Our team was notified of the problem.β
Is there anything I can do, given that the url itself works fine in the browser? Any alternative troubleshooting methods?
source
share