KakarlaMounika / python-twitter

Automatically exported from code.google.com/p/python-twitter
Apache License 2.0
0 stars 0 forks source link

GetUserTimeLine does not work #258

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.
import twitter

api = twitter.Api(consumer_key=consumer_key,
        consumer_secret=consumer_secret,
        access_token_key=access_token_key,
        access_token_secret=access_token_secret)

twitter_user = 'BarackObama' # trenord

statuses = api.GetUserTimeline(twitter_user)

print [s.text for s in statuses]

What is the expected output? What do you see instead?

I was expected to see Obama's timeline. Instead I always see mine.

What version of the product are you using? On what operating system?

python-twitter==1.1

Please provide any additional information below.

Original issue reported on code.google.com by wtraspad on 29 Nov 2013 at 1:36