Grape / Rails / Swagger UI でAPIサーバーを構築する②
※前回:Grape / Rails / Swagger UI でAPIサーバーを構築する①
前回でAPIを作成できたので、
今回はそのAPIをSwagger UIで
簡単に操作できるようにします。
gemをGemfileに追加します。
gem 'grape-swagger'
bundle install
で実行します
root.rbにadd_swagger_documentation
を追加
module V1
class Root < Grape::API
version :v1
format :json
mount V1::Users
add_swagger_documentation(
doc_version: '1.0.0',
info: {
title: 'テストAPI',
description: 'APIドキュメントです'
}
)
end
end
これで
http://localhost:3000/v1/swagger_doc
にアクセスすると
次にこれを Swagger UI で見れるようにします
Gemfile に以下を追記する。
gem 'swagger_ui_engine'
bundle install
で実行します
config/routes.rb
を修正してルーティングを追加します。
config/initializers
に以下のようなswagger_ui_engine.rb
を作成します。
SwaggerUiEngine.configure do |config|
config.swagger_url = {
v1: '/v1/swagger_doc'
}
end
routes.rb
にmount SwaggerUiEngine::Engine, at: '/v1/docs'
を追加します
Rails.application.routes.draw do
mount SwaggerUiEngine::Engine, at: '/v1/docs'
end
再起動し
下にアクセスすると、
http://localhost:3000/v1/docs
今度は
Swagger UI が表示されるはずです!!!
簡単〜!!!!!!!!!!!!
Author And Source
この問題について(Grape / Rails / Swagger UI でAPIサーバーを構築する②), 我々は、より多くの情報をここで見つけました https://qiita.com/tksh8/items/c3a80a7cdfbd5086403f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .