ReamazeAPI
Ruby library for working with the Reamaze API.
Installation
Add this line to your application's Gemfile:
gem "reamaze_api"
And then execute:
$ bundle
Or install it yourself as:
$ gem install reamaze_api
Usage
First initialize a new client instance:
client = ReamazeAPI.new(
brand: "brand", # Your Reamaze subdomain
login: "me@example.com", # Your Reamaze login
token: "somehash" # Your Reamaze API token
)
If you use a single brand in your application, you can configure these globally:
ReamazeAPI.config do |c|
c.brand = "brand" # Your Reamaze subdomain
c.login = "me@example.com" # Your Reamaze login
c.token = "somehash" # Your Reamaze API token
end
client = ReamazeAPI.new # Authenticate with the defaults provided above
To work with a resource:
client.articles.all
client.articles.create(params)
client.channels.all
client.channels.find(id)
client.contact.all
client.contact.create
client.contact.update
client.conversations.all
client.conversations.find
client.conversations.create
client..all
client..create
Pagination
Reamaze paginates responses that return multiple resources (ie: this library's
#all
methods), and by default you receive page 1. You can control which page
to fetch by passing the :page
parameter:
page1 = client..all
page2 = client..all(page: 2)
page3 = client..all(page: 3)
Auto-Pagination
Auto-pagination allows you to fetch all results without having to manually fetch each page. For example, with 3 pages of 30 conversations the following would fetch all 90:
conversations = client.conversations.all(auto_paginate: true)
Beware of API rate limiting! If you attempt to auto-paginate with a large
number of pages you may be rate limited by Reamaze. Make sure to apply filters
where necessary (eg: all(auto_paginate: true, for: "me@example.com")
).
Errors If fetching any page is not successful the error will be returned and no further pages will be fetched.
Customization and Middleware
ReamazeAPI uses the Faraday library for HTTP interactions, and by default,
Net::HTTP. To configure a different HTTP adapter you can set
Faraday.default_adapter
:
Faraday.default_adapter = :httpclient
If you need more customization for Faraday, for example, to add additional
middleware or change request headers, you can call ReamazeAPI.new
with a
block:
class MyCoolMiddleware < Faraday::Response::Middleware
end
Faraday::Response.register_middleware \
my_cool_middleware: MyCoolMiddleware
client = ReamazeAPI.new do |http|
http.response :my_cool_middleware
http.headers["User-Agent"] = "My Reamaze Client"
end
API Errors
By default, ReamazeAPI returns an error Hash for any API response with status 400-599. For example, the API returns a 404 if you provide an invalid brand name:
client = ReamazeAPI.new brand: "invalid"
client.articles.all
# {
# :success => false,
# :payload => {
# :error => "ReamazeAPI::NotFound",
# :message => "GET https://invalid.reamaze.com/api/v1/articles: 404"
# }
# }
If you would rather raise exceptions:
ReamazeAPI.config do |c|
c.exceptions = true
end
client = ReamazeAPI.new brand: "invalid"
client.articles.all # raises
# ReamazeAPI::NotFound: GET https://invalid.reamaze.com/api/v1/articles: 404
# ...backtrace
Development
After checking out the repo, run bin/setup
to install dependencies. Then,
run rake test
to run the tests. You can also run bin/console
for an
interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
.
To release a new version, update the version number in version.rb
, and then
run bundle exec rake release
, which will create a git tag for the version,
push git commits and tags, and push the .gem
file to
rubygems.org.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/itspriddle/reamaze_api.
License
Released under the MIT license:
Copyright (c) 2016 Joshua Priddle jpriddle@me.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.