Authentication (MD5)
We use MD5 based authentication behind the scenes.
You just need api_key and Secret to get started.
Example in Groovy Script
var key = "hbwcqfu4df8jloevbng7nm"; // This is <strong>api_key</strong>, to be provided by H3I. var secret = "qRol7KbJNP"; // To be provided by H3I const now = new Date(); var t = now.getTime().toString(); t = t.substring(0,10); var sig = CryptoJS.MD5(key + secret + t).toString();
above 'sig' will be used to call the API in parameter.