我正在这样调用我的索引控制器中的API,一切都正常,只有当我有Fiddler打开的时候.
public ActionResult Index() { Base model = null; var client = new HttpClient(); var task = client.GetAsync( "http://example.api.com/users/john/profile") .ContinueWith((taskwithresponse) => { var response = taskwithresponse.Result; var readtask = response.Content.ReadAsAsync<Base>(); readtask.Wait(); model = readtask.Result; }); task.Wait(); return View(model); }
No connection could be made because the target machine actively
refused it 127.0.0.1:8888
解决方法
检查任何代理配置的web.config,并检查您是否配置了.net可能使用的系统默认代理.
您可以将其添加到您的web.config以禁用代理配置:
您可以将其添加到您的web.config以禁用代理配置:
<system.net> <!-- set enabled to true to use the system default proxy --> <defaultProxy enabled="false" /> </system.net>