1

我正在尝试使用远程端点设置endpoints.bxb,但它给了我一个错误......我无法弄清楚它为什么会出现。我所做的与 Github 示例http-master完全相同。

错误未知键:“标题”

endpoints {
  authorization {
    none
  }
  action-endpoints {
    action-endpoint(Find) {
        accepted-inputs ()
        remote-endpoint ("{remote.url}/find") {
          method (POST)
        }
        headers {
          header (Content-Type: application/json)
        }
      }
  }
}
4

1 回答 1

0

该错误是由于headers标签没有嵌套在remote-endpoint标签内。

于 2019-01-08T22:55:38.103 回答