You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
Current calls to .GetStatus return objects that do not include many important fields, including quoted_status_id. This is a critical problem for the API.
To prove my point, I have compared different Twitter-Api libraries. I called Bear's api.GetStatus(800880576010063872) -- on a tweet that quoted another tweet -- and obtained the following information:
{ u'created_at': u'Tue Nov 22 01:56:23 +0000 2016',
u'current_user_retweet': 801266672996749312,
u'favorite_count': 36329,
u'hashtags': [],
u'id': 800880576010063872,
u'id_str': u'800880576010063872',
u'lang': u'en',
u'retweet_count': 34621,
u'retweeted': True,
u'source': u'<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
u'text': u'Update: Nothing went as planned https://t.co/RQa9O33GZ2',
u'urls': [ { u'expanded_url': u'https://twitter.com/drewrich_/status/115502449120378880',
u'url': u'https://t.co/RQa9O33GZ2'}],
u'user': { u'created_at': u'Thu Nov 18 03:45:43 +0000 2010',
u'description': u"Business | #VSUAlum | I Want To Own A Yacht By The Time I'm 29.",
u'favourites_count': 2031,
u'followers_count': 1570,
u'friends_count': 483,
u'geo_enabled': True,
u'id': 216941143,
u'lang': u'en',
u'listed_count': 20,
u'location': u'Virginia, USA',
u'name': u'\U0001f926\U0001f3fe\u200d\u2642\ufe0f',
u'profile_background_color': u'0F5711',
u'profile_background_image_url': u'http://pbs.twimg.com/profile_background_images/359757922/Me___Q.jpg',
u'profile_banner_url': u'https://pbs.twimg.com/profile_banners/216941143/1483151787',
u'profile_image_url': u'http://pbs.twimg.com/profile_images/810940822485090304/hMxCuKsj_normal.jpg',
u'profile_link_color': u'036E29',
u'profile_sidebar_fill_color': u'000000',
u'profile_text_color': u'FAF2FA',
u'screen_name': u'DrewRich_',
u'statuses_count': 98457,
u'time_zone': u'Eastern Time (US & Canada)',
u'url': u'https://t.co/YVcAwmLD07',
u'utc_offset': -18000},
u'user_mentions': []}
Then I called Tweepy's api.get_status(800880576010063872), and received the following information:
Current calls to
.GetStatus
return objects that do not include many important fields, includingquoted_status_id
. This is a critical problem for the API.To prove my point, I have compared different Twitter-Api libraries. I called Bear's
api.GetStatus(800880576010063872)
-- on a tweet that quoted another tweet -- and obtained the following information:Then I called Tweepy's
api.get_status(800880576010063872)
, and received the following information:The text was updated successfully, but these errors were encountered: