1\name{favorites}
2\alias{favorites}
3\title{
4A function to get favorite tweets
5}
6\description{
7Returns the n most recently favorited tweets from the specified user.
8}
9\usage{
10favorites(user, n = 20, max_id = NULL, since_id = NULL, ...)
11}
12\arguments{
13  \item{user}{The Twitter user to detail, can be \code{character} or an \code{\link{user}} object.}
14  \item{n}{Number of tweets to retrieve, up to a maximum of 200}
15  \item{max_id}{Maximum ID to search for}
16  \item{since_id}{Minimum ID to search for}
17  \item{\dots}{Optional arguments to pass along to RCurl}
18}
19\value{
20A list of \code{link{status}} objects corresponding to the \code{n} most recent tweets
21}
22\references{
23\url{https://dev.twitter.com/rest/reference/get/favorites/list}
24}
25\author{
26Jeff Gentry
27}
28\seealso{
29\code{\link{getUser}}, \code{\link{status}}
30}
31\examples{
32  \dontrun{
33      fav = favorites("barackobama", n=100)
34  }
35}
36\keyword{ interface }
37