0.0
No commit activity in last 3 years
No release in over 3 years
This rubygem does not have a description or summary.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 0.6.1
 Project Readme

Posterous API

Posterous API is a extraction from Reblog application (that is not ready in production, but will be =] )

Install

gem install posterous_api

Require

require 'posterous_api'

Using

    user = Posterous::User.new('my_user@email.com', 'my_password')

Getting the blogs from the user

user.blogs #  => return all blogs from posterous for this user

Get posts from a blog

users.posts_from :blog => 'site_id'

Getting tags from a blog

user.tags_from :blog => 'site_id'

Creating a Post

user.create_post_for :blog => '123456', :title => 'My title', :body => 'Body'