我正在尝试在 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 ,如图:
有人可以解释我如何执行不是localhost的请求?例如,喜欢 https://maps.googleapis.com/maps/api/place/textsearch/json?query=City