Is there any documentation on this anywhere? I'm not familiar with Ruby, and I can't find squat. I've managed to instantiate a tumblr_client, I think, but it's not "walking me through" a thing.
irb(main):002:0> require 'tumblrclient' require 'tumblrclient' => true irb(main):003:0> client = Tumblr::Client.new client = Tumblr::Client.new => #<Tumblr::Client:0x007fb23a4a0530 @consumerkey=nil, @consumersecret=nil, @oauthtoken=nil, @oauthtoken_secret=nil, @client=nil> irb(main):004:0> likes = client.likes likes = client.likes => {"status"=>401, "msg"=>"Not Authorized"}
Is there any documentation on this anywhere? I'm not familiar with Ruby, and I can't find squat. I've managed to instantiate a tumblr_client, I think, but it's not "walking me through" a thing.
irb(main):002:0> require 'tumblrclient'
require 'tumblrclient'
=> true
irb(main):003:0> client = Tumblr::Client.new
client = Tumblr::Client.new
=> #<Tumblr::Client:0x007fb23a4a0530 @consumerkey=nil, @consumersecret=nil, @oauthtoken=nil, @oauthtoken_secret=nil, @client=nil>
irb(main):004:0> likes = client.likes
likes = client.likes
=> {"status"=>401, "msg"=>"Not Authorized"}