I am using Twitter API and Flex 4 for creating Desktop App. I need to show tweets in two parts: 1)Tweets of User ABC to be shown in one section. 2)The tweets of people whom the User ABC is following, to be shown in another section.

I achieved point 1 by using :

https://api.twitter.com/1/statuses/user_timeline.xml?&screen_name="+ usrObj.username + "&count=" + usrObj.count;

But getting Bad Authentication Error while trying for point no.2.

I am hitting the following URL using HTTPSERVICE:

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

Also, I used:

https://api.twitter.com/1/statuses/home_timeline.xml?&screen_name="+ usrObj.username + "&count=" + usrObj.count;

where usrObj is an object.

Getting the following error message:

Error #2032: Stream Error. URL: https://api.twitter.com/1.1/statuses/home_timeline.json" errorID=2032

Please let me know whether I am following proper url and queries. Can anyone suggest me as to how to get the tweets exactly?

有帮助吗?

解决方案

Got my work done by using the following url for retrieving home timeline:

https://api.twitter.com/1/statuses/following_timeline.xml

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top