if (FALSE) {
search_post("rstats")
# finds post with the hashtag rstats AND the word Bluesky somewhere in the
# skeet (ignoring capitalisaion)
search_post("#rstats Bluesky")
# search for the exact phrase "new #rstats package"
search_post("\"new #rstats package\"")
# Use single quotes so you do not need to escape double quotes
search_post('"new #rstats package"')
# only search for skeets from one user
search_post("from:jbgruber.bsky.social #rstats")
# narrow down the search with more parameters
search_post("{atrrr}",
sort = "top",
since = "2024-12-05",
until = "2024-12-07 10:00:00",
mentions = NULL,
author = "jbgruber.bsky.social",
domain = "jbgruber.github.io",
url = "https://jbgruber.github.io/atrrr",
tag = "rstats")
}
Run the code above in your browser using DataLab