Python Tweepy – Obtener la ID de un usuario

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:

  1. Identifique el nombre de pantalla del usuario del perfil.
  2. Obtenga el objeto Usuario del perfil utilizando el get_user()método y el nombre de usuario.
  3. 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

Publicación traducida automáticamente

Artículo escrito por Yash_R y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *