def get_profile_by_twitter_id(twitter_id):
"""Returns a JSON text from the Twitter GET users/show API.
See https://dev.twitter.com/rest/reference/get/users/show"""
return authenticated_get(
'https://api.twitter.com/1.1/users/show.json?id={}'.format(
twitter_id))
评论列表
文章目录