Description Usage Arguments Details Value Author(s) See Also Examples
These functions can be used to retrieve specific tweets from the server
1 2 | showStatus(id, ...)
lookup_statuses(ids, ...)
|
id |
ID of a specific tweet, should be a String, but numbers are accepted |
ids |
A vector of IDs to lookup, should be Strings but numbers are accepted |
... |
Optional arguments to be passed to |
Ideally a POST request would be used for lookup_statuses, however currently there is a problem (issue 78 on github) and GET is used.
For showStatus, an object of class status
For lookup_statuses, a list of status
objects. Note that these will not be in the
same order as the ids
argument and that any id which could not be retrieved will not be present.
Jeff Gentry
1 2 3 4 5 | ## Not run:
showStatus('123')
lookup_statuses(c("123", "234", "456"))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.