Alright. So I suppose we can’t use the mentions_timeline to fetch retweet objects anymore, for e.g. consider the scenario
UserA tweets: “Toes go in first!”.
For this I get an object: {UserA, id: 12345, “Toes go in first!”}
UserB re-tweets the above. On querying the mentions_timeline I would previously get the object: {UserB, id: 12346, “RT @UserA: Toes go in first!”, retweet: true}
In the next call I would then query all ‘mentions’ since id = 12346 and get newer mentions and retweets.
If I understand you correctly this won’t be the case anymore. Also, querying retweets_of_me for UserA doesn’t give this either, only the original tweet with a retweet count and then we separately need to query ‘statuses/retweets/:12345’ to get the required object.
This reduces the effectiveness of since_id in the retweets_of_me call, since I can’t now know if an older tweet was recently retweeted. Could you tell me if there is still a way to do this?