42.6. 在 Salesforce 标头中传递并获取 Salesforce 响应标头
支持通过入站邮件 标头传递 Salesforce 标头,在 Camel 消息上以 Sforce
或 x-sfdc
开头的标头名称将在请求中传递,并在出站消息标头中显示以 Sforce
开始的标头。
例如,若要获取 API 限制,您可以指定:
// in your Camel route set the header before Salesforce endpoint //... .setHeader("Sforce-Limit-Info", constant("api-usage")) .to("salesforce:getGlobalObjects") .to(myProcessor); // myProcessor will receive `Sforce-Limit-Info` header on the outbound // message class MyProcessor implements Processor { public void process(Exchange exchange) throws Exception { Message in = exchange.getIn(); String apiLimits = in.getHeader("Sforce-Limit-Info", String.class); } }
另外,HTTP 响应状态代码和文本可作为标头 Exchange.HTTP_RESPONSE_CODE
和 Exchange.HTTP_RESPONSE_TEXT
提供。