0

目前我正在运行在这里找到的 uber.yaml 。我目前的实际值与预期值不匹配:

expected:
headers:
Content-Type: application/json

actual:
statusCode: 301
headers:
server: nginx
date: Tue, 13 Dec 2016 20:32:28 GMT
content-type: text/html
content-length: 178
location: https://api.uber.com/v1/history
connection: close
age: 0

有人知道怎么修这个东西吗?我已编辑 uber.yaml 以包含预期的内容类型,如下所示:

- name: Content-Type
    in: header
    type: string
    required: true
    default: application/json
4

1 回答 1

1

问题是 API 以状态代码 301 和内容类型 text/html 响应,但您的 API 描述说它应该以内容类型 application/json 响应。

于 2016-12-14T07:56:07.020 回答