经过大量阅读后,似乎可以做我想做的事情,但需要放松许多有用的安全措施才能做到这一点。由于有一个简单的解决方法,鉴于安全风险增加,放松这些措施是没有意义的。
我在 API 上遇到的错误是:
A potentially dangerous Request.Path value was detected from the client (:)
显然这是用于分隔字符串时间部分元素的冒号字符DateTime
。所以我做了以下改动。
我的 Api 操作方法现在看起来像这样:
[System.Web.Http.HttpGet]
[GET("range?{startDate:datetime}&{endDate:datetime}")]
public HttpResponseMessage Get(DateTime startDate, DateTime endDate)
日期现在被定义为查询字符串的一部分,而不是路径本身的一部分。
为了处理查询字符串的创建,我还有以下扩展方法:
public static string ToQueryString(this NameValueCollection source, bool removeEmptyEntries)
{
return source != null ? "?" + String.Join("&", source.AllKeys
.Where(key => !removeEmptyEntries || source.GetValues(key).Any(value => !String.IsNullOrEmpty(value)))
.SelectMany(key => source.GetValues(key)
.Where(value => !removeEmptyEntries || !String.IsNullOrEmpty(value))
.Select(value => String.Format("{0}={1}", HttpUtility.UrlEncode(key), value != null ? HttpUtility.UrlEncode(value) : string.Empty)))
.ToArray())
: string.Empty;
}
在我的客户端代码中使用如下:
var queryStringParams = new NameValueCollection
{
{"startDate", start.ToString(_dateService.DefaultDateFormatStringWithTime)},
{"endDate", end.ToString(_dateService.DefaultDateFormatStringWithTime)}
};
var response = httpClient.GetAsync(ApiRootUrl + "plots/range" + queryStringParams.ToQueryString(true)).Result;
我的应用程序中的日期服务仅提供默认日期格式字符串并使用此模式:
"yyyy-MM-ddTHH:mm:ss"
由此生成的完整 URI 如下所示:
http://localhost:51258/plots/range?startDate=2013-07-30T21%3A48%3A26&endDate=2013-08-06T21%3A48%3A26
希望这对将来的其他人有所帮助。