gists {gistr} | R Documentation |
List public gists, your own public gists, all your gists, by gist id, or query by date.
gists(what = "public", since = NULL, page = NULL, per_page = 30, ...)
what |
(character) What gists to return. One of public, minepublic, mineall, or starred. If an id is given for a gist, this parameter is ignored. |
since |
(character) A timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ. Only gists updated at or after this time are returned. |
page |
(integer) Page number to return. |
per_page |
(integer) Number of items to return per page. Default 30. Max 100. |
... |
Curl options passed on to |
## Not run: # Public gists gists() gists(per_page=2) gists(page=3) # Public gists created since X time gists(since='2014-05-26T00:00:00Z') # Your public gists gists('minepublic') gists('minepublic', per_page=2) # Your private and public gists gists('mineall') # Your starred gists gists('starred') # pass in curl options gists(per_page=1, config=verbose()) gists(per_page=1, config=timeout(seconds = 0.5)) ## End(Not run)