Tuitter::getUserTL
Get recent Tweets from the user. It’s possible to request any non-protected users’ timeline via optional parameter. When you don’t specify the user ID nor screen name, you can get the authenticating user’s timeline.
Note: ReTweets are stripped out of this function.
getUserTL( [array $opt [, $incrementalKey = 'default']] )
Parameters
opt
The optional parameters for Twitter API.
- id: Specifies the ID or screen name of the user for whom to return the Tweets.
- user_id: Specifies the ID of the user for whom to return the Tweets.
- screen_name: Specifies the screen name of the user for whom to return the Tweets.
- since_id: Returns only statuses with an ID greater than the specified ID.
- max_id: Returns only statuses with an ID less than or equal to the specified ID.
- count: Specifies the number of statuses to retrieve. May not be greater than 200.
- page: Specifies the page of results to retrieve.
incrementalKey
The unique key for auto incremental request.
Specifies FALSE not to use the incremental function.
Return values
Returns Tuitter_Tweets object.