Skip Menu |

This queue is for tickets about the AWS-Signature4 CPAN distribution.

Report information
The Basics
Id: 123440
Status: new
Priority: 0/
Queue: AWS-Signature4

People
Owner: Nobody in particular
Requestors: rlauer6 [...] comcast.net
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: POD clarification
Date: Sat, 28 Oct 2017 19:52:55 -0400
To: bug-AWS-Signature4 [...] rt.cpan.org
From: Rob Lauer <rlauer6 [...] comcast.net>
Thanks for the useful module. It might be helpful to others to explain in the documentation that if you are signing a request using the sign() method and you are using a temporary session token, you should add the session token to the request header manually. my $request = HTTP::Request->new('POST', $url); .... $request->header('X-Amz-Security-Token', $token); $aws_signature4->sign($request); The documentation around -security-token only applies to signed urls using the sign_url() method.