我试图从apache骆驼中调用第三方api,但它始终使我无效,并且在尝试通过curl时,我在做什么错了?
restConfiguration()
.component("servlet")
.bindingMode(RestBindingMode.json)
.dataFormatProperty("prettyPrint", "true")
.contextPath("app1/rest")
.port(8080);
rest("/getUsers").description("Users rest service")
.consumes("application/json").produces("application/json")
.get("/users").to("http://192.168.18.20:80/group/api/users?bridgeEndpoint=true");
但这总是使我为零,我在做什么错?
使用curl我正在这样做:
curl -X GET -H "Authorization: token 8d8b0359eb4e009e2c94edf45" "http://192.168.18.20:80/group/api/users"
这给了我适当的输出。 请忽略我的英语。