You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2013/08/26 19:47:53 UTC

[jira] [Commented] (CAMEL-6107) Language option not working for twitter streaming event filter

    [ https://issues.apache.org/jira/browse/CAMEL-6107?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13750303#comment-13750303 ] 

Claus Ibsen commented on CAMEL-6107:
------------------------------------

This would be fixed when we upgrade to twitter4j 3.0.4+.
                
> 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 assuming 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"; // any language-neutral term should work
>         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