2

Twitter hbc ライブラリを使用して、場所に基づいてツイートを取得しようとしています。サンプル ファイルに従ってコードをセットアップしましたFilterStreamExample。この例は機能しますが、エンドポイントに場所を追加しようとすると、致命的なエラー コード: 406 が表示されます。

動作するコードは次のとおりです。

StatusesFilterEndpoint endpoint = new StatusesFilterEndpoint();
endpoint.trackTerms(Lists.newArrayList("twitterapi", "#yolo"));

しかし、次のコードを追加すると、エラーが発生します。

Coordinate southwest = new Coordinate(-87.648926, 41.883109);
Coordinate northeast = new Coordinate(-87.606354, 41.828050);
Location chicago = new Location(southwest, northeast); 
endpoint.locations(Lists.newArrayList(chicago));

助けてくれてありがとう!

グレッグ

編集 これが私のコード全体です:

public class App {

  public static void oauth(String consumerKey, String consumerSecret, String token, String secret) throws InterruptedException {
    BlockingQueue<String> queue = new LinkedBlockingQueue<String>(100000);

    StatusesFilterEndpoint endpoint = new StatusesFilterEndpoint();
    Coordinate southwest = new Coordinate(-87.857666, 41.657347);
    Coordinate northeast = new Coordinate(-87.587128, 41.795712);
    Location chicago = new Location(southwest, northeast); 
    endpoint.locations(Lists.newArrayList(chicago));

    Authentication auth = new OAuth1(consumerKey, consumerSecret, token, secret);

    BasicClient client = new ClientBuilder()
      .name("exampleStream")
      .hosts(Constants.STREAM_HOST)
      .endpoint(endpoint)
      .authentication(auth)
      .processor(new StringDelimitedProcessor(queue))
      .build();

    // Establish a connection
    client.connect();
    PrintWriter writer;
    try {
      writer = new PrintWriter("twitterstream.txt", "UTF-8"); 
// Do whatever needs to be done with messages
      for (int msgRead = 0; msgRead < 1000; msgRead++) {
        if (client.isDone()) {
          System.out.println("Client connection closed unexpectedly: " + client.getExitEvent().getMessage());
          break;
      }
      String msg = queue.poll(5, TimeUnit.SECONDS);
      if (msg == null) {
        System.out.println("Did not receive a message in 5 seconds");
      } else {
        writer.println(msg);
      }
    }
     writer.close();
        } catch (FileNotFoundException e) {
    // TODO Auto-generated catch block
      e.printStackTrace();
        } catch (UnsupportedEncodingException e) {
    // TODO Auto-generated catch block
      e.printStackTrace();
        }  

        client.stop();
}

  public static void main(String[] args) {
  try {
      App.oauth("LEDrJPDhn6C2trbde95WZg", "gEmlgewUodOoDjMNl2QbcqsbGvYDxNZWNRULchPE", "292576546-SWzEgMU7mC7Haat3lLEOQ0mXsZFwBf8F3ZKLBMVa", "ajPN2rGLx57yPoUjYe2qN4bE763orux4KwYeoCAvuLRPM");
  } catch (InterruptedException e) {
      System.out.println(e);
  }

}

4

3 に答える 3

2

多分問題は座標です。http://boundingbox.klokantech.com/で確認する必要があります。その後、オプション「csv」を選択して、場所を区切ります。

于 2015-01-15T15:36:12.883 に答える
1

Google マップ座標を使用していますか? 座標点を切り替える必要があるようです。

Coordinate southwest = new Coordinate(41.657347, -87.857666);
Coordinate northeast = new Coordinate(41.795712, -87.587128);

hbc スナップショット バージョンを使用することもできます https://github.com/twitter/hbc/issues/19 よろしくお願いします。

于 2014-06-22T14:04:39.793 に答える