def get_timeline_by_screen_name(screen_name):
"""Returns a dict from the Twitter GET statuses/user_timeline API.
See https://dev.twitter.com/rest/reference/get/statuses/user_timeline"""
return authenticated_get(
'https://api.twitter.com/1.1/statuses/user_timeline.json?count=90&'
'screen_name={}'.format(
screen_name))
评论列表
文章目录