当前位置: 首页 > 知识库问答 >
问题:

typescript-rest-swagger securitydefinition bearer token

万俟渊
2023-03-14

使用typescript rest时,我集成了swagger,它是typescript的软件包,rest是typescript rest swagger

一旦我注释了授权中间件,它就开始工作了。除了象征性的招摇工作很好。

我的 swagger 配置文件看起来像

  • swagger.config.yml
swagger:
  outputDirectory: ./dist
  entryFile:
    - ./src/controller/*
  outputFormat: OpenApi_3
  name: Automation API
  produces: [application/json]
  version: 0.0.1
  securityDefinitions:
    BearerAuth:
      type: apiKey,
      name: Authorization,
      scheme: bearer,
      in: header

它与标签“typescript-rest-swagger”有关

共有1个答案

弓玉书
2023-03-14
swagger:
  outputDirectory: ./dist
  entryFile:
    - ./src/controller/*
  outputFormat: OpenApi_3
  name: Automation API
  produces: [application/json]
  version: 0.0.1
  securityDefinitions:
    default:
      type: apiKey,
      name: Authorization,
      in: header

适用于我与 typescript-rest-swagger

 类似资料:
  • Node - Koa - Typescript Project The main purpose of this repository is to build a good project setup and workflow for writing a Node api rest in TypeScript using KOA and an SQL DB. Koa is a new web fr

  • Node.js Express API with TypeScript 3 Node.js Express API with TypeScript 3. Supports MongoDB Description This skeleton will help you to build your own Node.js Express Mongodb API using TypeScript 3.

  • Building RESTful Web APIs with Node.js, Express, MongoDB and TypeScript This is a simple API that saves contact information of people. There are two versions of this project. V1.0.0: you can run the s

  • 我正在用React-Redux设置一个应用程序,并配置了商店,类似于这里显示的指南 这是我的密码: 但是,在运行build时,我一直收到以下Typescript错误 我很困惑。Redux的声明文件状态(如下所示)是否表明StoreEnhancer只是将Store和state扩展名作为空的普通对象接收? 如果是这样,为什么它不接受rest参数中的“Any”类型,即使我在配置文件中将“noImplic

  • 在TypeScript中,可以用“Rest参数”声明函数: 假设我声明了另一个调用的函数: 编译器产生以下消息: 提供的参数与调用目标的任何签名都不匹配:无法将类型“string”应用于类型为“string[]”的参数2。 如何才能调用将提供的参数?

  • TypeScript 2.1现在支持对象扩展/静止,因此不再需要任何解决方法! TypeScript支持JSX扩展属性,该属性通常用于React,以将HTML属性从组件传递到呈现的HTML元素: 但是,如果您向超文本标记语言元素传递任何未知的道具,React会引入警告。上面的例子会产生一个React运行时警告,是