Skip to content

Commit

Permalink
CAMEL-11242: Fixed example. This closes #1712
Browse files Browse the repository at this point in the history
  • Loading branch information
davsclaus committed May 24, 2017
1 parent 092696c commit 45fd419
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Expand Up @@ -27,7 +27,7 @@ public class TwitterSalesforceRoute extends RouteBuilder {
@Override
public void configure() throws Exception {
from("twitter-timeline:mentions")
.log("Mention ${body}")
.log("Tweet id ${body.id} mention: ${body}")
.process(exchange -> {
Status status = exchange.getIn().getBody(Status.class);
User user = status.getUser();
Expand Down
Expand Up @@ -21,10 +21,10 @@ camel.springboot.name=mention
## This uses the Twitter 'cameltweet' account for testing purposes.
## do NOT use this twitter account in your applications!

camel.component.twitter.consumer-key=NMqaca1bzXsOcZhP2XlwA
camel.component.twitter.consumer-secret=VxNQiRLwwKVD0K9mmfxlTTbVdgRpriORypnUbHhxeQw
camel.component.twitter.access-token=26693234-W0YjxL9cMJrC0VZZ4xdgFMymxIQ10LeL1K8YlbBY
camel.component.twitter.access-token-secret=BZD51BgzbOdFstWZYsqB5p5dbuuDV12vrOdatzhY4E
camel.component.twitter-timeline.consumer-key=NMqaca1bzXsOcZhP2XlwA
camel.component.twitter-timeline.consumer-secret=VxNQiRLwwKVD0K9mmfxlTTbVdgRpriORypnUbHhxeQw
camel.component.twitter-timeline.access-token=26693234-W0YjxL9cMJrC0VZZ4xdgFMymxIQ10LeL1K8YlbBY
camel.component.twitter-timeline.access-token-secret=BZD51BgzbOdFstWZYsqB5p5dbuuDV12vrOdatzhY4E

## This uses Camel test Salesforce developer account please use your own account in your applications

Expand Down

0 comments on commit 45fd419

Please sign in to comment.