我正在使用葡萄宝石;参考https://github.com/intridea/grape。
你能告诉我如何构建像“twitter_api_v1_statuses_path”这样的命名路径吗?
我的代码如下
module Twitter
class API < Grape::API
version 'v1', using: :header, vendor: 'twitter'
format :json
prefix :api
resource :statuses do
desc "Return a public timeline."
get :public_timeline do
Status.limit(20)
end
end
end