我用一种 HTTP GET 方法创建了非常简单的端点。我将一个字符串作为 ApiMethod 命名参数传递:
@Api (name = "sample_endpoint")
public class SampleEndpoint
{
public Entity get(@Named("parameter") String parameter)
{
return new Entity(parameter);
}
public class Entity
{
public String parameter = "Validated ok.";
public Entity(String parameter) { this.parameter = parameter; }
public String getParameter() { return parameter; }
}
}
当我使用包含字母和数字以及一些特殊字符(如 )的参数调用 URL 时-.
,它可以工作:
GET http://localhost:8888/_ah/api/sample_endpoint/v1/entity/passedparam
200 OK
{
"parameter": "passedparam"
}
但是当我在参数中插入某些特殊字符时,例如:#/
,我得到 HTTP 404。参数是 URL 编码的,例如我使用 valuepassed:param
GET http://localhost:8888/_ah/api/sample_endpoint/v1/entity/passed%3Aparam
404 Not Found
<html><head><title>Error 404</title></head>
<body><h2>Error 404</h2></body>
</html>
是错误还是功能?或者也许我做错了?