代码之家  ›  专栏  ›  技术社区  ›  Eric Schneider

WebAPI2绑定不工作

  •  0
  • Eric Schneider  · 技术社区  · 6 年前

    我是webapi 2的新手,正在尝试将我的api绑定到下面的调用。

    有人知道我做错了什么吗?

    呼叫: https://blabla.azurewebsites.net/myjohndeere/authenticated/e33dd8f74c97474d86c75b00dd28ddf8?oauth_token=1539dccf-d935-4d9e-83be-e00f76cabbb9&oauth_verifier=B22dWL

    [RoutePrefix("myjohndeere")]
    public class ApiMyJohnDeereController : ApplicationController
    {
    
        [HttpGet, Route("authenticated/{callbackId}")]
        [SwaggerResponse(HttpStatusCode.OK, Type = typeof(ApiResponseModel))]
        [SwaggerResponse(HttpStatusCode.InternalServerError, "An unknown error occurred")]
        [SwaggerResponse(HttpStatusCode.BadRequest, "Missing FieldMappings")]
        public IHttpActionResult Authenticated(string callbackId,[FromUri]string oauth_token, [FromUri]string oauth_verifier)
        {
            ...
        }
    
    2 回复  |  直到 6 年前
        1
  •  0
  •   Marcus Höglund    6 年前

    首先,你错过了路线中的“api”。

    像这样试试

    https://blabla.azurewebsites.net/api/myjohndeere/authenticated/e33dd8f74c97474d86c75b00dd28ddf8?oauth_token=1539dccf-d935-4d9e-83be-e00f76cabbb9&oauth_verifier=B22dWL

    然后,从控制器方法中移除fromuri属性。仅读取值类型的querystring时不需要该属性。

    像这样试试

    public IHttpActionResult Authenticated(string callbackId, string oauth_token, string oauth_verifier)
    
        2
  •  0
  •   Eric Schneider    6 年前

    问题是azure api网关仍然设置为使用put而不是get。