Releases: ddo/oauth-1.0a
Releases · ddo/oauth-1.0a
v1.0.1
v1.0.0
0.2.1
0.1.1
0.1.0
##Options
var oauth = OAuth(/* options */);
consumer
:Object
Required
your consumer keys
{
public: <your consumer key>,
secret: <your consumer secret>
}
signature_method
:String
default'HMAC-SHA1'
nonce_length
:Int
default32
version
:String
default'1.0'
parameter_seperator
:String
for header only, default', '
. Note that there is a space after,
last_ampersand
:Bool
defaulttrue
. For some services if there is no Token Secret then no need&
at the end. Check oauth doc for more information
oauth_signature is set to the concatenated encoded values of the Consumer Secret and Token Secret, separated by a '&' character (ASCII code 38), even if either secret is empty