Kevin Telford created CAMEL-6107:
------------------------------------

             Summary: Language option not working for twitter streaming event 
filter
                 Key: CAMEL-6107
                 URL: https://issues.apache.org/jira/browse/CAMEL-6107
             Project: Camel
          Issue Type: Bug
          Components: camel-twitter
    Affects Versions: 2.11.0
            Reporter: Kevin Telford
            Priority: Minor


The filter seemed to be working when the streaming filter type was userids, but 
that could have just been happenstance.  Either way, when running a streaming 
event filter with a language option set I observe tweets coming in that are 
from users who have their language preferences set to other than the specified 
language.  I'm only assume here this is what they are/should be matching 
against so this could be moot.

Example route code:
{code}
    @Override
    public void configure() throws Exception {
        String keywords = "lol";
        fromF("twitter://streaming/filter?type=event&lang=en&keywords=%s"
                + 
"&consumerKey=%s&consumerSecret=%s&accessToken=%s&accessTokenSecret=%s", 
                    keywords, consumerKey, consumerSecret, accessToken, 
accessTokenSecret)
                .process(new Processor() {
                    @Override
                    public void process(Exchange exchange) throws Exception {
                        String json = exchange.getIn().getBody().toString();
                        if (json.contains("lang='en'")) {
                            System.out.println("Correct");
                        } else {
                            System.out.println(json);
                        }
                    }})
                .end();
    }
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to