Class: Blogpost::Seesaa

Inherits:
Object
  • Object
show all
Defined in:
lib/blogpost/seesaa.rb

Class Method Summary collapse

Class Method Details

.post(opts = {}) ⇒ Object



3
4
5
6
7
8
9
# File 'lib/blogpost/seesaa.rb', line 3

def self.post(opts={})
  opts = Blogpost.options.merge(opts)
  host="http://blog.seesaa.jp/rpc"
  id = XMLRPC::Client.new2(host).call("blogger.getUsersBlogs", "",opts[:user], opts[:pass])[0]["blogid"]
  XMLRPC::Client.new2(host).call("metaWeblog.newPost", id, opts[:user], opts[:pass],
    {"title" => opts[:title],"description" => opts[:content]}, true)
end