我一直在研究 Web.Api 中的路由,并研究了表示端点的各种方式。我遇到了Instagram 的 REST 端点。(其中有一些可爱的文档)使用 Web.Api 为 Instagram 用户端点等情况设置路由和控制器的最佳方法是什么?
User Endpoints
GET/users/user-id Get basic information about a user.
GET/users/self/feed See the authenticated user's feed.
GET/users/user-id/media/recent Get the most recent media published by a user.
GET/users/self/media/liked See the authenticated user's list of liked media.
GET/users/search Search for a user by name.
如果我想在我的应用程序中复制这些端点,我将如何去做。我是否只需要一个具有 5 种方法的控制器“用户”,我需要什么样的路由来将 REST 调用定向到这些方法?