geoffjentry/twitteR

urls data frame

kyleiwaniec opened this issue · 1 comments

How can I access the urls data.frame?
I can see the urls in RStudio in the Global Environment pane, but I can't figure out how to access this data. The twListToDF() function does not include the urls field.

Thanks,
Kyle

image

for anyone looking for same, here is how I solved it:

searchTwitter("#Rstats", n=10)
tweets <- searchTwitter("#Rstats", n=10)

tweets[[i]]$getUrls()
# where i is the index of the particular tweet.