我已经使用以下代码获取公共帐户的提要,但是,我无法获取图像、视频、gif 等媒体。
TWTRAPIClient *APIClient = TWTRAPIClient.clientWithCurrentUser;
TWTRUserTimelineDataSource *newArray = [[TWTRUserTimelineDataSource alloc] initWithScreenName:@"TomCruise" APIClient:APIClient];
[newArray loadPreviousTweetsBeforePosition:@"0" completion:^(NSArray<TWTRTweet *> * _Nullable tweets, TWTRTimelineCursor * _Nullable cursor, NSError * _Nullable error) {
for (int count=0; count<tweets.count; count++) {
NSLog(@"tweet json is == \n%@",[tweets[count] tweetID]);
NSLog(@"tweet text is == \n%@",[tweets[count] text]);
[self.twitterarray addObject:[tweets[count] text]];
}
[self reloadCollectionView];
}];
在这里,我得到了数组TWTRTweet
数组,但它不包含任何媒体。
帮我。