Ruby Gem to simplify access to TwitterAds API
Switch branches/tags
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
fixtures/TwitterAds_test
lib
tests
.gitignore
.travis.yml
Gemfile
Gemfile.lock
LICENSE
README.md
Rakefile
twitter_ads.gemspec

README.md

twitter_ads

Gem to simplify access to TwitterADS API

Installation:

gem install twitter_ads

or in your Gemfile:

gem 'twitter_ads'

Usage:

You need to instanciete the client with a whitlsted Twitter Ads application and a user token allowed for this app:

 ads=TwitterADS::Client.new({consumer_key:"YOUR_CONSUER_KEY",
                         consumer_secret:"YOUR CONSUMER SECRET",
                        access_token:"YOUR ACCESS TOKEN",
                        access_secret:"YOUR ACCESS SECRET"})

get the list of accounts:

 ads.accounts

get info on a specfic account

account=ads.account(account_id)

Note that using this form, the account won't be fetched unless you do a refresh call:

 account.refresh

get tailored_audience change

accounts.tailored_audience_changes

get tailored audience change on a specific list

accounts.tailored_audience_changes list_id

If an operation is missing, there is two ways to add it:

Just do it manually:

ads.get action,param

Example:

ads.get "accounts"