Is there a way in the Twitter API to get the replies to a particular tweet? Thanks
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
From what I understand, there’s not a way to do that directly (at least not now). Seems like something that should be added. They recently added some ‘retweet’ capabilities, seem logical to add this as well.
Here’s one possible way to do this, first sample tweet data (from
status/show):From
status/showyou can find the user’s id. Thenstatuses/mentions_timelinewill return a list of status for a user. Just parse that return looking for ain_reply_to_status_idmatching the original tweet’sid.