RestSharp-无法连接到远程服务器

时间:2018-07-20 14:19:11

标签: c# asp.net-mvc restsharp

我的RestSharp请求有问题-在Test项目中运行时,它可以正常工作,但在MVC中运行时,返回“无法连接到远程服务器”。

        var client = new RestClient("https://apiurl");
        var request = new RestRequest("Authenticate", Method.POST);
        request .AddHeader("Accept", "text/json");
        request .AddHeader("Content-Type", "text/json");
        var model = new AuthenticationRequest
        {
            Username = "username",
            Password = "passowrd"
        };
        string body = JsonConvert.SerializeObject(model);
        request.AddParameter("text/json", body, ParameterType.RequestBody);

        var response = client.Execute(request);

相同的测试代码工作正常。但是在本地主机上的MVC中,我得到“无法连接到远程服务器”。有人遇到过类似的问题吗?

预先感谢您的帮助!

0 个答案:

没有答案