Skip to content

Commit

Permalink
fix: request.data -> request.body in pre-req scrip
Browse files Browse the repository at this point in the history
  • Loading branch information
mjr2595 committed Jun 20, 2024
1 parent 5ed0b58 commit deed4cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var epoch = new Date().getTime();
var request_vars =
http_verb == "GET" || http_verb == "DELETE"
? http_verb + epoch + resource_path
: http_verb + epoch + pm.request.data + resource_path;
: http_verb + epoch + pm.request.body + resource_path;

// Generate the signature and build the Auth header
var signature = btoa(cjs.HmacSHA256(request_vars, api_key).toString());
Expand Down

0 comments on commit deed4cd

Please sign in to comment.