我想要一个具有 URI 或 URL 参数的操作的 ApiController。
http://testserver/api/Controller?id=http://www.stackoverflow.com
我实施了以下行动:
public bool Get(string id)
{
...
}
或者
public bool Get(Uri id)
{
...
}
但是:每当我按上述方式调用 URL 时,都会收到 400 - Error - Bad Request。