Smart Link Authentication

Updated on Fri, 2012-03-23

In order to make authorized calls to ASI's APIs, you must register an application with ASI. Once you have an application id and secret, follow the steps described for Authorizing a request.


Authorizing a request

All of ASI's APIs are based on the HTTP protocol. This means that any software you write which uses ASI's APIs sends a series of structured messages to ASI's servers. For example:

GET /v1/lists/news.json HTTP/1.1
Accept:	*/*
Connection: close
Host: api.asicentral.com
User-Agent: Mozilla/5.0 (Windows NT 6.2; rv:9.0.1) Gecko/20100101 Firefox/9.0.1
Authorization: AsiMemberAuth client_id=17828&client_secret=6b0d16dd019affe67e046c4ce264b2b2

Parameters

The authorization header containers 2 key/value pairs, where the keys all begin with the string "client_". For any authorized API request, you will need to provide these two values to specify authorization for the request.

Id
The client_id identifies which application is making the request.

Secret
The client_secret is a unique token generated for your application. The token below is an example.


Building the header string

To build the header string, imagine writing to a string named authString.

  1. Append the string "AsiMemberAuth " (including the space at the end) to authString.
  2. For each key/value pair of the 2 parameters listed above:
    1. Append the key to authString.
    2. Append the equals character '=' to authString.
    3. Append the value to authString.
    4. If there are key/value pairs remaining, append an ampersand '&' authString.

Performing these steps on the parameters collected above results in the following string:

AsiMemberAuth client_id=17828&client_secret=6b0d16dd019affe67e046c4ce264b2b2

This value should be set as the Authorization header for the request.