updates based on PR comments
authorSuhem Parack <sparack@twitter.com>
Tue, 1 Mar 2022 23:07:15 +0000 (15:07 -0800)
committerSuhem Parack <sparack@twitter.com>
Tue, 1 Mar 2022 23:07:15 +0000 (15:07 -0800)
examples/API_v2/get_liked_tweets.py
examples/API_v2/get_users_mentions.py
examples/API_v2/get_users_timeline.py
examples/API_v2/lookup_tweets_using_tweet_ids.py

index c117868ea0f88a5d70df7348d15b5562fb9ba243..3cdb20183a797b2508284f47853c33a50997853a 100644 (file)
@@ -16,6 +16,6 @@ tweets = client.get_liked_tweets(id, tweet_fields=["created_at"])
 
 # Print the Tweet text and the time the Tweet was created
 for tweet in tweets.data:
-    print(tweet.text)
+    print(tweet.id)
     print(tweet.created_at)
     
\ No newline at end of file
index 916d1bd17a825fc535abcd3f93016d38f2b3e39d..c6673a48a638911abab04719eb2b581ef8588e10 100644 (file)
@@ -15,5 +15,5 @@ tweets = client.get_users_mentions(id)
 
 # Print the Tweet text
 for tweet in tweets.data:
-    print(tweet.text)
+    print(tweet.id)
     
\ No newline at end of file
index c62ba3311e8cc3685803d6124af04410c22aee3f..cec52549c984583814ec3d347155455c5506a549 100644 (file)
@@ -15,5 +15,5 @@ tweets = client.get_users_tweets(id)
 
 # Print the Tweet text
 for tweet in tweets.data:
-    print(tweet.text)
+    print(tweet.id)
     
\ No newline at end of file
index 5db1290971530da020eb56b5eb27cd267b8e1f1e..847b98c782f32205a9572b21c3968e91ddd768cf 100644 (file)
@@ -8,14 +8,14 @@ bearer_token = ""
 client = tweepy.Client(bearer_token)
 
 # Replace Tweet IDs
-ids = ["1409935014725177344", "1409931481552543749", "1441054496931541004"]
+ids = [1409935014725177344, 1409931481552543749, 1441054496931541004]
 
 # By default the Tweet ID and Tweet text are returned. If you want additional 
 # Tweet fields, specify those in tweet_fields
-tweets = client.get_tweets(ids, tweet_fields=["created_at"])
+tweets = client.get_tweets(ids=ids, tweet_fields=["created_at"])
 
 # Print the Tweet text and the time the Tweet was created
 for tweet in tweets.data:
-    print(tweet.text)
+    print(tweet.id)
     print(tweet.created_at)
     
\ No newline at end of file