| publicTimeline {twitteR} | R Documentation |
These functions will allow you to retrieve various timelines within the Twitter universe
publicTimeline(session=getCurlHandle()) userTimeline(user, session=getCurlHandle()) friendsTimeline(session=getCurlHandle()) mentions(session=getCurlHandle())
user |
The Twitter user to detail, can be character or
an user object. |
session |
A session object from initSession |
The userTimeline function will only properly operate if the
authenticated user is allowed to see the requested user.
The mentions function will return any statuses which mention
the authenticated user.
The friendsTImeline function will return the current timeline
of the friends of the authenticated user.
A list of status objects
Jeff Gentry
## Not run:
sess <- initSession('myUser', 'myPasss')
pt <- publicTimeline()
pt
mentions(sess)
tw <- getUser('twitter', sess)
userTimeline(tw, sess)
## End(Not run)