Skip Menu |

This queue is for tickets about the Net-Google-AuthSub-Once CPAN distribution.

Report information
The Basics
Id: 56339
Status: new
Priority: 0/
Queue: Net-Google-AuthSub-Once

People
Owner: Nobody in particular
Requestors: julien [...] sobrier.net
Cc:
AdminCc:

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



Subject: Module does not work for POST and PUT
The request is hardcoded to GET. Google also uses PUT and POST. The URL and HTTP command should be takend diirectly from the request. Replace sub sign_request { my ($self, $request, $url, $token) = @_; [...] my $data = "GET $url $timestamp $nonce"; By sub sign_request { my ($self, $request, $token) = @_; [...] my $data = $request->method . " " . $request->uri . " $timestamp $nonce";