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.
我在用https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=[username]&include_rts=true&rpp=100
https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=[username]&include_rts=true&rpp=100
要获取用户的推文,但由于某种原因,大多数推文的描述都被截断了,有什么办法可以得到完整的描述
遗憾的是,RSS 提要不包含完整的推文。
如果您将 .rss 替换为 .xml 或 .json,那么您将获得全文。
https://api.twitter.com/1/statuses/user_timeline.json?screen_name=[username]&include_rts=true&rpp=100
然后,您必须将 JSON 或 XML 转换为 RSS。