Display twitter feed in Android App using twitter API 1.1

前端 未结 4 1142
慢半拍i
慢半拍i 2021-01-15 02:02

Basically i want to show this feed : https://en.twitter.com/epl_live in my app. Since twitter changed its api 1.1 every call has to be authorised and all examples i\'m findi

4条回答
  •  自闭症患者
    2021-01-15 02:33

    This works:

    https://api.twitter.com/1/statuses/user_timeline.xml?id=epl_live&count=200&page=3, you can also ask for the JSON with:

    https://api.twitter.com/1/statuses/user_timeline.json?id=epl_live&count=200&page=3

    I hope this helps.

    Regards

提交回复
热议问题