En este artículo veremos cómo podemos obtener el ID de un usuario. ID es el marcador de identificación único de la cuenta de Twitter. Twitter le otorga una identificación al usuario, el usuario no puede seleccionar o cambiar su propia identificación.
Para obtener el ID tenemos que hacer lo siguiente:
- Identifique el nombre de pantalla del usuario del perfil.
- Obtenga el objeto Usuario del perfil utilizando el
get_user()
método y el nombre de usuario.- De este objeto, obtenga el atributo id o id_str presente en él.
Ejemplo 1: considere el siguiente perfil:
el nombre de pantalla del perfil mencionado anteriormente es geeksforgeeks.
# import the module import tweepy # assign the values accordingly consumer_key = "" consumer_secret = "" access_token = "" access_token_secret = "" # authorization of consumer key and consumer secret auth = tweepy.OAuthHandler(consumer_key, consumer_secret) # set access to user's access key and access secret auth.set_access_token(access_token, access_token_secret) # calling the api api = tweepy.API(auth) # the screen name of the user screen_name = "geeksforgeeks" # fetching the user user = api.get_user(screen_name) # fetching the ID ID = user.id_str print("The ID of the user is : " + ID)
Producción :
The ID of the user is : 57741058
Ejemplo 2: Considere el siguiente perfil:
El nombre de pantalla del perfil mencionado anteriormente es PracticeGfG.
# the screen name of the user screen_name = "PracticeGfG" # fetching the user user = api.get_user(screen_name) # fetching the ID ID = user.id_str print("The ID of the user is : " + ID)
Producción :
The ID of the user is : 4802800777