Learn R Programming

Rtumblr

Rtumblr is a wrapper for the official tumblr API. (An existing CRAN package has been archived)

Installation

You can install the development version of Rtumblr like so:

devtools::install_github("schochastics/Rtumblr")

API keys

You need to register an app here: https://www.tumblr.com/oauth/apps Then, create an environment variable called “RTUMBLR_TOKEN” (for instance in .Renviron) from the consumer_key and the consumer_secret as follows. If you have

consumer_key = 123456789
consumer_secret = abcdefghi

Then your environment variable RTUMBLR_TOKEN should be 123456789;abcdefghi

Usage

Most API endpoints only work with your own account. The ones already implemented include:

  • get_blog_blocks(): get a list of accounts you blocked
  • get_blog_likes(): get a list of posts you liked
  • get_blog_followers(): get your followers
  • get_blog_following(): get accounts you follow

Implemented endpoints that work with any account are:

  • get_blog_avatar(): get the avatar of a blog
  • get_blog_info(): get the general info of a blog
  • get_blog_posts(): get the posts of a blog
  • get_posts_tag(): get posts with a specific tag.

All function return a tibble (or list of tibble). To get information about columns, see the official API documentation: https://www.tumblr.com/docs/en/api/v2

Copy Link

Version

Install

install.packages('Rtumblr')

Monthly Downloads

172

Version

0.1.1

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

David Schoch

Last Published

July 23rd, 2025

Functions in Rtumblr (0.1.1)

get_blog_likes

Retrieve Blog's Likes
get_blog_info

Retrieve Blog Info
get_blog_avatar

Retrieve a Blog Avatar You can get a blog's avatar in 9 different sizes
get_blog_followers

Retrieve followers
get_blog_blocks

Retrieve Blogs Blocks
get_blog_followed_by

Check If Followed By Blog This method can be used to check if one of your blogs is followed by another blog.
get_blog_following

Retrieve following
get_posts_tag

Get Posts with Tag
get_blog_posts

Retrieve Published Posts