使用Swagger向远程服务器发出GET请求

时间:2017-08-01 13:20:52

标签: c# asp.net-core swagger

我正在尝试在 ASP.NET核心项目中使用Swagger。我有controller这样的方法

[Produces("application/json")]
[Route("api/MyMethod")]    
public class ApiController : Controller
{
    private HttpClient client = new HttpClient();

    /// <summary>
    /// Get api request
    /// </summary>
    /// <param name="query"></param>
    [HttpGet]
    public void Get(string query)
    {
        var response = client.GetAsync(query).Result;
    }
}

当我启动项目时,我可以运行我的请求,但它总是使用 localhost ,如图:

enter image description here

有人可以解释我如何执行不是localhost的请求?例如,喜欢 https://maps.googleapis.com/maps/api/place/textsearch/json?query=City

0 个答案:

没有答案