Sample code for 30+ languages & platforms
Node.js

Generate OAuth 1.0 Signature

Demonstrates how to generate an OAuth 1.0 signature.

Chilkat Node.js Downloads

Node.js
NODEJS_PRELUDE

function chilkatExample() {

    var success = false;

    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    success = false;

    var oauth = new chilkat.OAuth1();

    // Set input parameters:
    oauth.OauthVersion = "1.0";
    oauth.OauthMethod = "GET";
    oauth.OauthUrl = "http://echo.lab.madgex.com/echo.ashx";
    oauth.ConsumerKey = "key";
    oauth.ConsumerSecret = "secret";
    oauth.Token = "accesskey";
    oauth.TokenSecret = "accesssecret";
    oauth.Nonce = "01020304050607080102030405060708";
    oauth.Timestamp = "1441659763";
    // Can be "HMAC-SHA1", "HMAC-SHA256", "RSA-SHA1", or "RSA-SHA2"
    oauth.SignatureMethod = "HMAC-SHA256";

    success = oauth.Generate();
    if (success !== true) {
        console.log(oauth.LastErrorText);
        return;
    }

    // Examine the various outputs:

    console.log(oauth.QueryString);
    console.log(oauth.BaseString);
    console.log(oauth.HmacKey);
    console.log(oauth.Signature);
    console.log(oauth.EncodedSignature);
    console.log(oauth.AuthorizationHeader);
    console.log(oauth.GeneratedUrl);

}

chilkatExample();