Skip to content
This repository has been archived by the owner on Apr 2, 2020. It is now read-only.

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
soutaro committed Aug 8, 2012
1 parent 9e4d6af commit 1427b91
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
@@ -0,0 +1,29 @@
# 1. Load UbiregiAPI library

require "ubiregi_api"

Make sure library search path is configured properly.

# 2. Instantiate Client

client = UbiregiAPI::Client.new(secret, auth_token)

`secret` and `auth_token` can be found your developer page (https://ubiregi.com/developer).

# 3. Send GET request

client._get('customers')

# 4. Send POST request

client._post('customers', post_data)

`post_data` must be a JSON transformable value (`Hash` or `Array`).

# 5. Retrieve Whole Collection

client._index('customers', 'customers')

`_index` method can be used to retrieve all data included in a collection.
It understands `next-url` field included in the response, and send GET request again.

0 comments on commit 1427b91

Please sign in to comment.