Hi,
I’m looking for a way to get a list of tweets IDs which going to be used with loadTweetWithID method of Twitter SDK.
Right now I see the only option to call “https://api.twitter.com/1.1/statuses/user_timeline.json” - but it’s response terrible huge! (I mean what the app got all information about tweets + additional info) I assume what SDK loadTweetWithID will also call for tweet’s details, so the app will be loading these data twice - I’m really don’t like it from the point of networking optimization.
Is it possible to use some other API endpoints to get only (or with minimal additional data) the list of some user account’s tweets IDs list?
Right now the app is using TWTRTimelineViewController provided by Twitter SDK, but I’m going to change standard UI to a custom one that’s why I’m trying to use TWTRTweetView instead of TWTRTimelineViewController.