0.0
No commit activity in last 3 years
No release in over 3 years
A library for easy interfacing with the Quickblox API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.10
~> 10.0
>= 0
 Project Readme

QuickbloxApi

A Ruby gem for easy interfacing with the Quickblox API.

Installation

$ gem install quickblox_api

Usage

client = QuickbloxApi.client(
  application_id: 1337,
  auth_key: 'aK89LOdzSAk09A',
  auth_secret: 'AZLKV8ZnJ-NkL13',
  user_owner_id: 2410
)
client.query :get, '/users.json'
=> {
    :status=>200, # response status
    :body=>
      # response body
      {:current_page=>1,
      :per_page=>10,
      :total_entries=>1,
      :items=>
          [{:user=>
          {:id=>91919191,
          :owner_id=>1337,
          :full_name=>"abscondite",
          ...
          :user_tags=>nil}}
      ]}
   }

Contributing and license

Bug reports and pull requests are welcome on GitHub at https://github.com/abscondite/quickblox_api.

The gem is available as open source under the terms of the MIT License.