Wednesday, December 21, 2016

NetSuite tokenPassport Generator

If you need to test the NetSuite SOAP API (SuiteCloud) with tools like SOAPUI you might need a quick way to generate the tokenPassport node:
#!/bin/bash -e
# netsuiteTokenPassportGenerator.sh
# @author: Nestor Urquiza
# @date: 20121221
account=******
consumerKey=********
token=*********
nonce=`cat /dev/urandom | env LC_CTYPE=C tr -dc 'a-zA-Z0-9' | fold -w 20 | head -n 1`
timestamp=`date +%s`
base="$account&$consumerKey&$token&$nonce&$timestamp"
consumerSecret=************
tokenSecret=**********
key="$consumerSecret&$tokenSecret"
algorithm=HMAC-SHA256
signature=`echo -en "$base" | openssl dgst -sha256 -hmac "$key" -binary | openssl enc -base64`
echo " <platformMsgs:tokenPassport>"
echo " <platformMsgs:account>$account</platformMsgs:account>"
echo " <platformMsgs:consumerKey>$consumerKey</platformMsgs:consumerKey>"
echo " <platformMsgs:token>$token</platformMsgs:token>"
echo " <platformMsgs:nonce>$nonce</platformMsgs:nonce>"
echo " <platformMsgs:timestamp>$timestamp</platformMsgs:timestamp>"
echo " <platformMsgs:signature algorithm=\"$algorithm\">$signature</platformMsgs:signature>"
echo " </platformMsgs:tokenPassport>"

No comments:

Followers