Google cloud platform GCP API网关:无法使用路径参数

Google cloud platform GCP API网关:无法使用路径参数,google-cloud-platform,yaml,openapi,google-cloud-api-gateway,Google Cloud Platform,Yaml,Openapi,Google Cloud Api Gateway,我正在努力将路径参数从网关传递到实际端点 以下是我的开放式API yaml: swagger: '2.0' info: description: | Blah blah version: 0.0.1 title: SSAuth contact: email: blah@gmail.com schemes: - https produces: - application/json paths: /v0/auth/users/echo: get:

我正在努力将路径参数从网关传递到实际端点

以下是我的开放式API yaml:

swagger: '2.0'
info:
  description: |
    Blah blah
  version: 0.0.1
  title: SSAuth
  contact:
    email: blah@gmail.com
schemes:
  - https
produces:
  - application/json
paths:
  /v0/auth/users/echo:
    get:
      summary: check the health of api
      operationId: healthCheck
      consumes:
        - application/json
      produces:
        - application/json
      responses:
        200:
          description: OK
      x-google-backend:
        address: https://path-to-my-cloud-run-service/v0/auth/users/echo
      security:
        - api_key: []

  /v0/auth/users/type/{type}:
    post:
      summary: Add a new user to the user
      operationId: addUser
      consumes:
        - application/json
      produces:
        - application/json
      parameters:
        - name: type
          in: path
          description: provider type of the user
          required: true
          type: string
      responses:
        400:
          description: Invalid input
        200:
          description: OK
      x-google-backend:
        address: https://path-to-my-cloud-run-service/v0/auth/users/type/`type`
      security:
        - api_key: []

securityDefinitions:
  api_key:
    type: apiKey
    name: X-API-Key
    in: header

当我得到第一条路径时,它就工作了。但在第二条路径中,有一个路径参数,我无法找到将其传递到我的云运行URL的方法。在日志中,我看到了这个
https://path-to-my-cloud-run-service/v0/auth/users/type/%60type%60?type=email
而不是
https://path-to-my-cloud-run-service/v0/auth/users/type/email
,这会导致我的服务由于类型无效而被拒绝

我需要在yaml中更改什么才能使其正常工作


我遇到的另一个问题是,如果我在主体中放入json,GET请求会收到400个错误请求,即使我指定它使用application/json。

在挖掘后找到了解决方案

这是路径,这是工作yaml:

swagger: '2.0'
info:
  description: |
    Blahblah
  version: 0.0.1
  title: Title
  contact:
    email: blah@gmail.com
schemes:
  - https
produces:
  - application/json
paths:
  /v0/auth/users/echo:
    get:
      summary: check the health of api
      operationId: healthCheck
      consumes:
        - application/json
      produces:
        - application/json
      responses:
        200:
          description: OK
      x-google-backend:
        address: https://path-to-my-service
        path_translation: APPEND_PATH_TO_ADDRESS
      security:
        - api_key: []

  /v0/auth/users/type/{type}:
    post:
      summary: Add a new user to the user
      operationId: addUser
      consumes:
        - application/json
      produces:
        - application/json
      parameters:
        - name: type
          in: path
          description: provider type of the user
          required: true
          type: string
      responses:
        400:
          description: Invalid input
        200:
          description: OK
      x-google-backend:
        address: https://path-to-my-service
        path_translation: APPEND_PATH_TO_ADDRESS
      security:
        - api_key: []

securityDefinitions:
  api_key:
    type: apiKey
    name: X-API-Key
    in: header