OAuth Parameters
Every request sent to the API will be accomplished with the proper authentication. This is done so by adding a custom header to each request; Authorization. This header is comprised of several pieces. Let's step through each.
| Parameter | Example Value |
|---|---|
| ouath_callback oauth_consumer_key oauth_signature oauth_signature_method oauth_timestamp oauth_token oauth_version | path/to/local/script/file.php testConsumerKey 7e80267a3449434009d450b50d6a14c3 I6kDP8R7IZ7PJ2i2SFbpq6bFZqc= HMAC-SHA1 1380138173684 AUOgOlCHHH5x3iqWKgVF7BSA |
Note the ordering of these parameters. They are lexicographically ordered per the OAuth specification. This is a requirement and, if not followed, the request will not be successful.
Updated over 1 year ago
