gpt4 book ai didi

ruby-on-rails - 如何设置不记名 token 参数以使用 Rswag UI 测试 Rails API

转载 作者:行者123 更新时间:2023-12-02 19:12:21 27 4
gpt4 key购买 nike

我在使用 Rswag UI gem 测试我的 API 时遇到问题。在 param 字段中输入 token 后,似乎在 UI 中未正确设置授权 header 。尽管如此,当我在终端中运行测试时,测试本身正在通过并且正在命中端点。请查看下面的图片以了解更多信息。

我在 application_controller 中的身份验证方法如下所示:

def authenticate!
authenticate_or_request_with_http_token do |token, _|
@auth = ApiKey.exists?(access_token: token)
end
end

swagger_helper 安全定义如下所示

  securityDefinitions: {
Bearer: {
description: '...',
type: :apiKey,
name: 'Authorization',
in: :header
}
}

通过的测试看起来像这样:

require 'swagger_helper'

RSpec.describe 'Api::V1::Events', type: :request do

let(:access_token) { FactoryBot.create(:api_key).access_token }
let(:Authorization) { "Bearer #{access_token}" }

path '/v1/events' do
post 'Creates an event' do
tags 'Events'
consumes 'application/json'
security [Bearer: {}]
parameter name: :Authorization, in: :header, type: :string
parameter name: :event, in: :body, schema: {
type: :object,
properties: {
name: { type: :string },
description: { type: :string },
date: { type: :string },
time: { type: :string }
},
required: [ 'name', 'description', 'date', 'time' ]
}

response '201', 'created' do
let(:event) { { name: 'foo', description: 'bar', date: '2020-09-24', time: '00:00:00' } }
run_test!
end
end
end
end

这是我正在努力解决的行:parameter name: :Authorization, in: :header, type: :string 我尝试了不同的类型,例如,httpstringapiKey,我没有运气

Swager UI 应返回的 Curl 应如下所示:

curl -X POST "http://localhost:3000/v1/events" -H "accept: */*" -H 'Authorization: Bearer ab4d77e61a5ccdc402sb75867328ea77' -H "Content-Type: application/json" -d "{\"name\":\"string\",\"description\":\"string\",\"date\":\"string\",\"time\":\"string\"}"

enter image description here

最佳答案

我根据收到的评论找到了解决方案。我在 swagger UI 中没有看到 Authorize 按钮。所以我基本上在 swagger_helper 等文件中做了一些更新

我改变了这个:

  'v1/swagger.yaml' => {
openapi: '3.0.1',
...

为此

  'v1/swagger.json' => {
swagger: '2.0',
....
}

同样在文件的底部,我将 config.swagger_format = :yaml 更改为 config.swagger_format = :json

然后我运行以下命令:rswag:specs:swaggerize 生成 json 文件

我还从c.swagger_endpoint '/api-docs/v1/swagger.yaml', 'API V1 Docs'c.swagger_endpoint '/api-docs/v1/swagger.json', 'API V1 文档的

最后,我重新启动了服务器,我能够看到上面提到的输入 token 的按钮。

关于ruby-on-rails - 如何设置不记名 token 参数以使用 Rswag UI 测试 Rails API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64064973/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com