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 |
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 3 months ago