如何将不记名令牌添加到 openapi-generator-cli 生成的 api 端点的 headers

How to add Bearer token to headers of generated api endpoint from openapi-generator-cli

我正在测试 openapi-generator-cli 以从 swagger.json 文件为 React 客户端应用程序生成服务.

现在一些路由受到保护,需要 不记名令牌 header。登录后返还token。

是否可以在调用受保护路由的生成方法时将它们添加为配置或header参数?

在我的组件中,我使用将配置作为参数的服务来实现 Api。

myToken 是我之前存储令牌的局部变量。

import * as Api from '../../api/src';
const configParameters: Api.ConfigurationParameters = {
  headers: {
    'Authorization': 'Bearer ' + myToken,
  },
};
const configuration = new Api.Configuration(configParameters);
const myService = new Api.MyApi(configuration);