cancel
Showing results for 
Search instead for 
Did you mean: 

Mapper expression required for encoding

yash_verma
New Contributor

Hi Team,
Help required to implement below logic for one field in mapper snap. Please help
API_KEY =“3456789dgghhjh”
SECRET=“8889999456hhggth74kju”
var payload = ‘POST\n\n’ + date.toString() + ‘\n’;
hmac = crypto.createHmac(‘sha256’, SECRET);
hmac.update(payload);
‘Authorization’: 'INDIA ’ + API_KEY + ‘:’ + hmac.digest(‘base64’),

Thanks

Yash

3 REPLIES 3

cjhoward18
Employee
Employee

@yash.verma

Not exactly sure what you want the final form to look like, but here is an expression that uses sha256

and Base64#encode

with your sample string to give something similar to what you are looking for I believe. Here is the expression I used given your example. I replaced the SECRET with the actual value and the date with Date.now():

Base64.encode('POST\n\n' + Date.now().toString() + '\n' + Digest.sha256("8889999456hhggth74kju"))

Hi ,

How to implement hmac cryptograhy in snaplogic. I need to call an rest api which uses hmac encrytion and the code snippet which I have given is required to be converted in same way in snaplogic to derive the mapper variable

jervin
New Contributor III

Hi @yash.verma did you ever find a solution for this?