I want to get all replies for specific status(tweet), I tried status.getInReplyToStatusId but it gave me -1,
and tried status.getInReplyToScreenName and it gave me null value so, how I can have all replies of the tweet
thanks
There’s not a good general solution to this problem using the Twitter API I’m afraid.
thanks for reply, is there any solution to do that ???
You could do a couple of things here. Let’s say you identify a tweet from @foo which you want to find replies to. You could
It’s not ideal, and you’ll have to do extra work to get replies-to-replies, but some have had success using this method.
thanks for help