如何通过 twitter api 获取最新的 post

How to fetch the latest post through twitter api

我只想获取 post 并按我的要求显示它?如何使用 twitter api.?任何帮助都是 accepted.Please 提供文档未达标的代码。

根据the documentation

要检索用户的 post,您需要调用

https://api.twitter.com/1.1/statuses/user_timeline.json

如果你只想要最新的post,你需要添加count=1

因此,要从 我的 帐户获取最新的 post,请使用

https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=edent&count=1

您需要使用 OAuth 签署请求。