Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用带有 twitter4j (twitter4j-stream-3.0.3.jar) 的 twitter 流 API,并使用getRetweetCount获取转发计数。但它总是返回 0。
哪里不对了 ?
您需要使用 status.getRetweetedStatus().getRetweetCount()
为了防止错误,您应该在将 null 分配给一个值之前检查它:
val retweetCount = if (tweet.getRetweetedStatus != null) tweet.getRetweetedStatus.getRetweetCount else 0