Forum Discussion
Siva_Venna
5 years agoContributor
I am also getting authentication error- signature mismatch.
@Ish ,@Harikrish any solution you have pls do share.
Hi @Siva_Venna,
The advice I can offer is to check the values of the variables you input to the script are correct. For example if the endpoint is something like:
https://subdomain.domain.com/v1/resource?token=abcd123
Then the values would be:
var endpoint = 'https://subdomain.domain.com/v1/resource?token=' + encodeURIComponent('abcd123');
var host = 'subdomain.domain.com';
var canonical_uri = '/v1/resource';
var canonical_querystring = 'token=' + encodeURIComponent('abcd123');
Can you please provide more clarification what you want to validate?
- philliperamos6 years agoContributor
Hi Supratim,
I figured out a way to get this done.
I converted the data to a JSON format to pivot the data, then I used a combination of JSON Splitter/Mapper and Data Validator to validate the data.