Java 8 个用于 Twitter4J 4.0.3
Java 8 for Twitter4J 4.0.3
我正在使用 Twitter4J 开发一个项目,我使用的是最新版本 (4.0.3)。
使用 GET search/tweets 端点时,需要很长时间才能在端点上看到我的调用结果。所以我需要使用 Java 8 Stream 库,这样我就可以看到每个端点调用的结果。 Twitter4J 4.0.3 是否已经与 Java 8 兼容?
谢谢。
来自他们的官方网站:
Twitter4J is featuring:
100% Pure Java - works on any Java Platform version 5 or later.
因此,它将在 Java 8.
上运行
When using the GET search/tweets endpoint, it takes a long time before
I can see the result of my call on the endpoint.
因为您没有 post 您的代码,但主要可能是因为 count
参数。因此,将 count
限制为 10 或 20 以快速查看结果。
我正在使用 Twitter4J 开发一个项目,我使用的是最新版本 (4.0.3)。
使用 GET search/tweets 端点时,需要很长时间才能在端点上看到我的调用结果。所以我需要使用 Java 8 Stream 库,这样我就可以看到每个端点调用的结果。 Twitter4J 4.0.3 是否已经与 Java 8 兼容?
谢谢。
来自他们的官方网站:
Twitter4J is featuring:
100% Pure Java - works on any Java Platform version 5 or later.
因此,它将在 Java 8.
上运行When using the GET search/tweets endpoint, it takes a long time before I can see the result of my call on the endpoint.
因为您没有 post 您的代码,但主要可能是因为 count
参数。因此,将 count
限制为 10 或 20 以快速查看结果。