#AppFigures API Client
A Ruby wrapper for appfigures.com API
##Installation
In your Gemfile you need to add the appfigures_client
gem:
gem 'appfigures_client'
And then run the bundler and restart your server to make the files available through the pipeline:
$ bundle install
Or install it separately:
$ gem install appfigures_client
##Usage
For more information read http://docs.appfigures.com/
require 'appfigures_client'
api = AppfiguresClient.init(USERNAME, PASSWORD, CLIENT_KEY)
api.products.search(options={})
api.products.get(id)
api.products.all(store = nil)
api.sales.search(options = {})
api.sales.search_by_regions(options = {})
api.ads.search(options = {})
api.reviews.search(options = {})
api.reviews.counts(options = {})
api.ranks.search(options = {})
api.ranks.snapshot(options = {})
Contributing
- 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, version, 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 (c) 2015 Aleksey Dmitriev. See LICENSE.txt for
further details.