Created
January 17, 2014 01:54
-
-
Save windmillium/8467188 to your computer and use it in GitHub Desktop.
Script to bulk upload files to tumblr queue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# gem install tumblr_client | |
# use 'tumblr' command to generate security credentials | |
# fill in security info from the generated file at ~/.tumblr | |
# fill in the source directory and destintion directory | |
# fill in blogname | |
# script will upload a file then move it to the destination directory | |
require 'rubygems' | |
require 'tumblr_client' | |
Tumblr.configure do |config| | |
config.consumer_key = "" | |
config.consumer_secret = "" | |
config.oauth_token = "" | |
config.oauth_token_secret = "" | |
end | |
files = Dir["/home/username/tumblr_images/*"] | |
final_dir = "/home/username/queued_tumblr_images/" | |
blog = 'yourblog.tumblr.com' | |
# end variable section | |
client = Tumblr::Client.new | |
files.each do |file| | |
puts file | |
response = client.photo(blog, {:data => [file], :state => 'queue' }) | |
if response.has_key?("errors") | |
puts response | |
exit 1 | |
end | |
File.rename(file, final_dir + File.basename(file)) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
Thank you for the script. I'm completely novice to scripts and coding so I am about to ask a dumb question. I really need a way to bulk upload posts to tumblr (non-images) and was hoping to use your script. How do I do that? What do I do with the the script/downloaded file? Again, I don't know much abut coding beyond html, css and these kind of things. Thanks