Ruby Library for AWIS REST API - see: Alexa Docs
gem install awis-sdk-ruby
- The latest update requires Ruby 2.0 or higher
require 'awis'
AWIS_CONFIG = YAML.load(File.read('awis.yml'))
Awis.config do |c|
c.access_key_id = AWIS_CONFIG['access_key_id']
c.secret_access_key = AWIS_CONFIG['secret_access_key']
c.debug = AWIS_CONFIG['debug']
c.protocol = 'https' # Default 'https'
c.timeout = 10 # Default 10
c.open_timeout = 10 # Default 10
c.logger = false # Default nil
end
client = Awis::Client.new
url_info = client.url_info(url: "site.com")
If you looking for the API request URI:
Awis::API::UrlInfo.new.load_request_uri(url: 'site.com')
returns object that contains attributes:
- data_url
- rank
- asin
- xml
New methods:
- is_404?
- not_found?
- pretty_xml
pretty_xml
method will easily to review the XML response from the terminal
returns object that contains relationships:
contact_info
- attrubutes
- data_url
- owner_name
- physical_address
- company_stock_ticker
- phone_numbers
content_data
- attrubutes
- data_url
- site_title
- site_description
- speed_median_load_time
- speed_percentile
- adult_content
- language_locale
- links_in_count
- owned_domains
usage_statistics
- attrubutes
- time_range_months
- time_range_days
- rank_value
- rank_delta
- reach_rank_value
- reach_rank_delta,
- reach_per_million_value
- reach_per_million_delta
- page_views_per_million_value
- page_views_per_million_delta,
- page_views_rank_value
- page_views_rank_delta
- page_views_per_user_value
- page_views_per_user_delta
- Methods:
- range_type
- range_count
related_links
- attrubutes
- data_url
- navigable_url
- title
categories
- attrubutes
- title
- absolute_path
You can specify options:
- url
- response_group - which data to include in response (i.e. ["rank", "contact_info", "content_data"]) - defaults to all available
client = Awis::Client.new
sites_linking_in = client.sites_linking_in(url: "site.com")
If you looking for the API request URI:
Awis::API::SitesLinkingIn.new.load_request_uri(url: 'site.com')
Returns object that contains relationships:
- sites [:title, :url]
You can specify options:
- url
- count - how many results to retrieve - defaults to max value that is 20
- start - offset of results - defaults to 0
client = Awis::Client.new
traffic_history = client.traffic_history(url: "site.com")
If you looking for the API request URI:
Awis::API::TrafficHistory.new.load_request_uri(url: 'site.com')
Returns object that contains methods:
- range
- site
- start
Returns object that contains relationships:
- historical_data [:date, :page_views_per_million, :page_views_per_user, :rank, :reach_per_million]
You can specify options:
- url
- range - how many days to retrieve - defaults to max value 31
- start - start date (i.e. "20120120", 4.days.ago) - defaults to range number days ago
client = Awis::Client.new
category_listings = client.category_listings(path: "Top/Arts")
If you looking for the API request URI:
Awis::API::CategoryListings.new.load_request_uri(path: "Top/Games/Card_Games")
Returns object that contains methods:
- count
- recursive_count
Returns object that contains relationships:
- listings [:data_url, :title, :popularity_rank, :description]
client = Awis::Client.new
category_browses = client.category_browse(path: "Top/Arts")
If you looking for the API request URI:
Awis::API::CategoryBrowse.new.load_request_uri(path: "Top/Games/Card_Games")
Returns object that contains methods:
- categories [:path, :title, :sub_category_count, :total_listing_count]
- language_categories [:path, :title, :sub_category_count, :total_listing_count]
- related_categories [:path, :title, :sub_category_count, :total_listing_count]
- letter_bars [:path, :title, :sub_category_count, :total_listing_count]
Returns object that contains relationships:
- listings [:data_url, :title, :popularity_rank, :description]
- bundle exec rake test
You can retrieve status code and requestID
- request_id
- status_code
Awis is using nokogiri
to parse XML documents.
Copyright (c) Encore Shao. See LICENSE for details.