1\name{retweets}
2\alias{retweets}
3\alias{retweeters}
4\title{
5Functions to work with retweets
6}
7\description{
8These functions can be used to return retweets or users who retweeted a tweet
9}
10\usage{
11retweets(id, n = 20, ...)
12}
13\arguments{
14  \item{id}{The ID of the tweet to get retweet information on}
15  \item{n}{The number of results to return, up to 100}
16  \item{\dots}{Further arguments to pass on to httr}
17}
18\value{
19   For \code{retweets} the n most recent retweets of the original tweet.
20
21   For \code{retweeters} the n most recent users who have retweeted this tweet.
22}
23\author{
24Jeff Gentry
25}
26\seealso{
27  \code{\link{showStatus}}
28}
29\examples{
30  \dontrun{
31     retweets("21947795900469248")
32
33     st = showStatus("21947795900469248")
34     retweeters(st$getId())
35  }
36}
37% Add one or more standard keywords, see file 'KEYWORDS' in the
38% R documentation directory.
39\keyword{ ~kwd1 }
40\keyword{ ~kwd2 }% __ONLY ONE__ keyword per line
41