auth = twitter.oauth.OAuth(OAUTH_TOKEN, OAUTH_TOKEN_SECRET,CONSUMER_KEY, CONSUMER_SECRET)
twitter_api = twitter.Twitter(auth=auth)
json_load = twitter_api.GetUserTimeline(screen_name= "@jason")
Gives me a 404 error, while other methods work -- what am I doing wrong?