0
我有下面的代碼,它基於已知ID的列表查詢Twitter API的屏幕名稱。我想反過來:瞭解屏幕名稱,並獲取ID。使用Twython從屏幕名稱列表(Twitter API)獲取用戶ID
from twython import Twython
# Paste your codes here
app_key = '...'
app_secret ='...'
oauth_token = '...-...'
oauth_token_secret= '...'
# Create twitter thing to query
twitter = Twython(app_key, app_secret, oauth_token, oauth_token_secret)
# What to look up (Twitter id:s)
ids = ["259784090","136953436","1219150098"]
# Create a comma separated string from the previous list
comma_separated_string = ",".join(ids)
# Query twitter with the comma separated list
output = twitter.lookup_user(user_id=comma_separated_string)
username_list=[]
# Loop through the results (Twitter screen names)
for user in output:
print user['screen_name']
是的!這工作完美。 – textnet