这是一个简化的 ASP.NET Web API
public string Get() {
return $"Received value: 1,2 in string Get()";
}
public string Get([FromUri] int id) {
return $"Received value: {id} in Get(int id)";
}
如何在 WSO2 API 定义中映射这些?我尝试了以下方法,但似乎不起作用。
我收到以下错误
{"fault":{"code":900906,"message":"No matching resource found in the API for the given request","description":"Access failure for API: /api/1.0, version: 1.0 status: (900906) - No matching resource found in the API for the given request. Check the API documentation and add a proper REST resource path to the invocation URL"}}
我希望 url 调用这样的东西
http://localhost:8280/api/Default
http://localhost:8280/api/Default?id=123
在此先感谢您的帮助!
最佳答案
您可以为 2 个案例定义 2 个资源。 (即有和没有查询参数)
在您的 URL 中,版本不正确。它应该是
http://localhost:8280/api/1.0.0
http://localhost:8280/api/1.0.0?id=123
如果版本是默认版本,您可以像这样简单地删除版本。
http://localhost:8280/api
http://localhost:8280/api?id=123
关于WSO2 API 管理器 - API 定义 URL 映射,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39194497/