1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00
httparty/examples/delicious.rb

38 lines
1.1 KiB
Ruby
Raw Normal View History

dir = File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
require File.join(dir, 'httparty')
require 'pp'
2015-04-18 08:38:40 -04:00
config = YAML.load(File.read(File.join(ENV['HOME'], '.delicious')))
class Delicious
include HTTParty
base_uri 'https://api.del.icio.us/v1'
2013-04-18 08:09:21 -04:00
def initialize(u, p)
2016-11-08 09:20:36 -05:00
@auth = { username: u, password: p }
end
2013-04-18 08:09:21 -04:00
# query params that filter the posts are:
# tag (optional). Filter by this tag.
# dt (optional). Filter by this date (CCYY-MM-DDThh:mm:ssZ).
# url (optional). Filter by this url.
# ie: posts(query: {tag: 'ruby'})
def posts(options = {})
2016-11-08 09:20:36 -05:00
options.merge!({ basic_auth: @auth })
self.class.get('/posts/get', options)
end
2013-04-18 08:09:21 -04:00
# query params that filter the posts are:
# tag (optional). Filter by this tag.
# count (optional). Number of items to retrieve (Default:15, Maximum:100).
def recent(options = {})
2016-11-08 09:20:36 -05:00
options.merge!({ basic_auth: @auth })
self.class.get('/posts/recent', options)
end
end
delicious = Delicious.new(config['username'], config['password'])
2016-11-08 09:20:36 -05:00
pp delicious.posts(query: { tag: 'ruby' })
pp delicious.recent
2013-04-18 08:09:21 -04:00
delicious.recent['posts']['post'].each { |post| puts post['href'] }