Get, follow or unfollow tags via Qiita API.
qiita_get_tags(tag_id = NULL, user_id = NULL, per_page = 100L, page_offset = 0L, page_limit = 1L) qiita_follow_tag(tag_id) qiita_unfollow_tag(tag_id) qiita_is_following_tag(tag_id)
"R"
, "dplyr"
)."yutannihilation"
).## Not run: ------------------------------------ # # get a tag by Tag IDs # qiita_get_tags(tag_id = "R") # # # get tags by user ID # qiita_get_tags(user_id = "yutannihilation") # # # follow a tag # qiita_follow_tag("RStudio") # # # unfollow a tag # qiita_unfollow_tag("RStudio") ## ---------------------------------------------