API Documentation

/request_token
API operation used to authenticate using OAuth.
Production:
Test:
https://tippingcircle.com/rest/v1/request_token
http://test.tippingcircle.com/rest/v1/request_token

Request
Remember to include the OAuth values in the Authorization Header to authenticate the request.  You can use one of these OAuth Code Examples in your preferred programming language.
  Param Description
* oauth_consumer_key Consumer key for the application.
* oauth_nonce A random string generated by the client.
* oauth_signature An HMAC-SHA1 hash key generated by the client using the consumer_secret provided in your API credentials.  Standard OAuth procedures need to be followed in order to generate the signature correctly.  See OAuth Code Examples.
* oauth_signature_method Currently "HMAC-SHA1" is the only signature method supported.
* oauth_timestamp The timestamp for the API call.
* oauth_version The current API version "1.0".
GET
/request_token

Header
Content-Type: 'application/json'
Authorization: OAuth realm="",
oauth_consumer_key="E4ZcTipHc3CozLB3jknSTK2et",
oauth_nonce="dn5st4g",
oauth_signature="gtj49bsnzb6lw6h73tp3g72o81",
oauth_signature_method="HMAC-SHA1",
oauth_timestamp="1366151475",
oauth_version="1.0"

Response
The success response includes the tokens for an active API session.  The oauth_token and oauth_token_secret are used to generate the signature for the Top Level API Calls.
{
"success": true
"message": "String content",
"oauth_token": "ht2ssnzb54dst73tp3g72we35",
"oauth_token_secret": "apxtfdpvdd2ty481fkc48pc6oi",
}