Skip to content

doz/AWeber-API-Ruby-Library

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AWeber API Gem

Official AWeber API gem.

Installation

gem install aweber

Getting Started

This guide assumes you have nothing previously setup to work with the AWeber API. It will walk through registering an account, creating an app and everything up to the point where you’ll actually start working with data.

If you don’t want to bother with all the account setup stuff, you can look in the examples directory for just example code.

Requires a normal AWeber account (not a Labs account)

1. Register an AWeber Labs Account

Head to http://labs.aweber.com and sign up for a free AWeber Labs account. This is how you register apps and get OAuth keys.

2. Create an App

Once logged in, Create a New App. Once created, it will show you the Consumer Key and Secret for that app.

3. Write Some Code

The OAuth Handler

oauth = AWeber::OAuth.new('consumer_key', 'consumer_secret')

Authorize an Account

Open, what the following outputs, in a browser and use your AWeber account credentials. This will give your app permission to work with your account’s data:

oauth.request_token.authorize_url

Verification Code

After you do the above step, it will output a “Verification Code”. Copy this and verify your oauth object:

oauth.authorize_with_verifier('verification_code')

Grab an AWeber::Base

aweber = AWeber::Base.new(oauth)

This object is how you access data from your account. aweber.account is your account object which is the stem for all other resources. Take a look at the next section, “Usage”, to find out how to work with different resources.

Usage

Resource Traversal

Getting resource data is much like traversing associations in ActiveRecord. Everything starts with the account object and goes from there:

aweber.account.lists           #=> #<AWeber::Collection>
aweber.account.lists[123]      #=> #<AWeber::Resource::List>
aweber.account.lists[123].name #=> "WhateverList"

Collections

aweber.account.lists in the example above would be a Collection. Collections act like a normal Hash. Resources of a collection are accessed normally, using [] with the key being the ID of the resource.

find_by_*

Collections also support ActiveRecord style find_by_* methods:

aweber.account.lists.find_by_name("testlist")

Resources

Resources are elements of a Collection. A single list resource would be retrieved with:

aweber.account.lists[1234]

Updating Resources

Currently, subscribers are the only resource you can update via the API. Everything else is read only for the time being.

Updateable Subscribers

  • name
  • misc_notes
  • email
  • status
  • last_followup_message_number_sent
  • custom_fields (Hash of key/value pairs)
  • ad_tracking

Moving Subscriber From List to List

new_list = aweber.account.lists[1234]
subscriber.list = new_list

Example

subscriber = account.lists[654321].subscribers[123456]
subscriber.name = "New Name"
subscriber.save

Note on Patches/Pull Requests

  • Check out the latest master to make sure the feature hasn’t been implemented or the bug hasn’t been fixed yet
  • Check out the issue tracker to make sure someone already hasn’t requested it and/or contributed it
  • Fork the project
  • Start a feature/bugfix branch
  • Commit and push until you are happy with your contribution
  • Make sure to add tests for it. This is important so I don’t break it in a future version unintentionally.
  • Please try not to mess with the Rakefile or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Copyright

Copyright © 2010-2011 AWeber Communications, Inc. See LICENSE for more detail.

About

Ruby interface to AWeber's API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%