How to generate x-amz-date and Signature? HELP

Example this :
x-amz-date: 20220903T180639Z

image

I think you can convert the current unix time into your preferred format.

Try this out:

BLOCK:CurrentUnixTime
LABEL:CURRENT
  => VAR @CURRENT
ENDBLOCK

BLOCK:UnixTimeToDate
LABEL:AMZ
  unixTime = @CURRENT
  format = "yyyyMMddTHHmmssZ"
  => VAR @AMZ
ENDBLOCK

Result:
image

For the signature, I think it’s a SHA256 hash type but I’m not sure how it was made or what data was included to make that encryption.

Also, try to move this thread to the Questions section so people can see and provide you with more useful answers.

1 Like

someone is good on c# ?

if u try for cognito u dont need the x-amz for signature

THANKS FOR HELPING OUT , I THINK THAT IS AWS SIGNATURE , RURI CREATED A GUIDE ON THIS AWS SIGNATURE GEN.

GOT THIS ERROR :medal_sports:

image