微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – 为什么在ASP.NET中调用API仅在我有Fiddler打开的情况下工作?

我正在这调用我的索引控制器中的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);
}

如果我关闭fiddler我得到以下错误

No connection Could be made because the target machine actively
refused it 127.0.0.1:8888

是否有一些配置我必须包括,所以调用一个API的工作,即使我没有fiddler打开.

解决方法

检查任何代理配置的web.config,并检查您是否配置了.net可能使用的系统认代理.
您可以将其添加到您的web.config以禁用代理配置:
<system.net>
      <!-- set enabled to true to use the system default proxy -->
      <defaultProxy enabled="false" />
    </system.net>

原文地址:https://www.jb51.cc/csharp/92540.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐