Using RestRequest to a REST endpoint (Asana). Some machines get the request returned properly and some don't get anything. Doing more troubleshooting I think that the machines that do not get responses have IE as their default browser.
If I test the url manually in a Chrome browser I get the response. If I test in the IE browser then I get a "Do you want to Open or Save" prompt. I=My theory is that an IE setting of somekind is blocking the request with this question and since it is an app it just blocks.
My code is simple:
var client = new RestClient(@"https://app.asana.com/api/1.0/workspaces/99999999999999/tasks/search);
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer " + asanaToken);
IRestResponse response = client.Execute(request);
How can I get around this?