带有可选参数的 web api 路由

web api route with optional parameter

我目前正在玩一些东西...根据this link,我需要构建一个对以下格式开放的路由

webServiceURL/version/devices/deviceLibraryIdentifier/registrations/passTypeIdentifier?passesUpdatedSince=tag

所以我这样定义了路线

 config.Routes.MapHttpRoute(
       name: "DefaultApi3",
       routeTemplate: "{version}/devices/{deviceLibraryIdentifier}/registrations/{passTypeIdentifier}/{passesUpdatedSince}",
       defaults: new { controller = "SerialNumbers", action = "GET", passesUpdatedSince = RouteParameter.Optional }
           );

但是,url

的以下路由失败

http://localhost/v1/devices/24358235235loji200/registrations/pass.com.mypass?passesUpdatedSince=12a512

如何配置路由,以便上面的 url 可以到达我的控制器?

我的控制器看起来像

[HttpGet]
public HttpResponseMessage Get(string passesUpdatedSince ="")
{
        //do stuff
}

更新

感谢评论,我做了以下更改。

路线

config.Routes.MapHttpRoute(
           name: "DefaultApi3",
           routeTemplate: "v1/devices/{deviceLibraryIdentifier}/registrations/{passTypeIdentifier}",
           defaults: new { controller = "SerialNumbers", action = "GET" }
        );

我的控制器如下

public HttpResponseMessage Get(string deviceLibraryIdentifier,
                           string passTypeIdentifier,
                           string passesUpdatedSince = "")
    {
          //do stuff
    }

根据 Apple 文档,假设以下 Web 服务调用看起来像这样是否正确

http://localhost:31472/v1/devices/23lk5235232oijlk/registrations/pass.com.mypass http://localhost:31472/v1/devices/23lk5235232oijlk/registrations/pass.com.mypass?passesUpdatedSince=159025

因为它们返回 404。

但是,这些确实有效。 http://localhost:31472/v1/devices/23lk5235232oijlk/registrations/pass.com.mypass/?passesUpdatedSince=1415l http://localhost:31472/v1/devices/23lk5235232oijlk/registrations/pass.com.mypass/

那么,在 url 末尾附近没有 / 的情况下,是否有办法让它工作?

看起来设备确实无法识别路线。我收到以下消息

Get serial #s task (for device 2523ff2fswtsfdh6544, pass type pass.com.mypass, last updated (null); with web service url https://weburl) encountered error: Unexpected response code 404

对于路线,尝试:

config.Routes.MapHttpRoute(
       name: "DefaultApi3",
       routeTemplate: "{version}/devices/{deviceLibraryIdentifier}/registrations/{passTypeIdentifier}",
       defaults: new { controller = "SerialNumbers", action = "GET" }
 );

请注意,根据您给我们的 link (https://developer.apple.com/library/ios/documentation/PassKit/Reference/PassKit_WebService/WebService.html#//apple_ref/doc/uid/TP40011988-CH0-SW4),您实际上应该有一个硬编码值 {version}

硬编码版本如下所示:

config.Routes.MapHttpRoute(
           name: "DefaultApi3",
           routeTemplate: "v1/devices/{deviceLibraryIdentifier}/registrations/{passTypeIdentifier}",
           defaults: new { controller = "SerialNumbers", action = "GET" }
     );

您的控制器操作还需要能够接受路由的所有参数:

[HttpGet]
public HttpResponseMessage Get(string deviceLibraryIdentifier, 
                               string passTypeIdentifier, 
                               string passesUpdatedSince ="")
{
        //do stuff
}

因为 URI 的一部分有句点 (pass.com.mypass),所以总是返回 404

我必须添加

<modules runAllManagedModulesForAllRequests="true" />

在我的 web.config 中。在那之后,一切都按预期进行