1

我的 Web API 方法在响应正文中返回一个二进制 PDF 文件,我已在 Power Automate 的自定义连接器的 swagger 文件中设置了这个文件。然而,尽管输出是二进制 PDF 文件并且属性类型是“文件”,但自定义连接器 UI 中的测试函数仍然认为它返回一个“字符串”,即使它显然不是!

问题:任何想法我做错了什么让测试人员认为它是一个字符串?

这是问题的屏幕截图: 在此处输入图像描述 这是我对 Web API 方法的狂妄自大(注意 200 的响应schema: {type: file, format: binary}

swagger: '2.0'
info: {title: xxxx, version: '1.0', description: xxxx}
host: xxxx.azurewebsites.net
basePath: /api
schemes: [https]
consumes: []
produces: []
paths:
  /FrontPageGenerator:
    post:
      description: xxxx
      operationId: FrontPageGenerator
      summary: FrontPageGenerator
      parameters:
      - name: body
        in: body
        required: true
        schema: {type: string}
      consumes: [application/json]
      produces: [application/json, application/pdf]
      responses:
        '200':
          description: Successfully generated composite PDF file
          schema: {type: file, format: binary}
        '400':
          description: Invalid input
          schema: {$ref: '#/definitions/GenericJson'}
          examples:
            application/json: {message: No body}
        '406':
          description: Not Acceptable Accept Type
          schema: {$ref: '#/definitions/BasicError'}
          examples:
            application/json: {message: Not Acceptable}
definitions:
  BasicError:
    type: object
    properties:
      message: {type: string}
  GenericJson: {type: object}
4

0 回答 0