Skip Menu |

This queue is for tickets about the REST-Client CPAN distribution.

Report information
The Basics
Id: 120021
Status: new
Priority: 0/
Queue: REST-Client

People
Owner: Nobody in particular
Requestors: Konstantin [...] Tokar.RU
Cc:
AdminCc:

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



Subject: Invalid POST request ?
Date: Sat, 28 Jan 2017 20:54:17 +0000
To: bug-REST-Client [...] rt.cpan.org
From: Konstantin Tokar <konstantin [...] tokar.ru>
May be, 'PUT' replace to 'POST' ? return $self->request('PUT', @_); =item POST ( $url, [$body_content, %$headers] ) Preform an HTTP POST to the resource specified. Takes an optional body content and hashref of custom request headers. =cut sub POST { my $self = shift; return $self->request('PUT', @_); }
Subject: Re: Invalid POST request ?
Date: Sat, 28 Jan 2017 20:55:28 +0000
To: bug-REST-Client [...] rt.cpan.org
From: Konstantin Tokar <konstantin [...] tokar.ru>
sorry, my issue to old version... 2017-01-28 20:54 GMT+00:00 Konstantin Tokar <konstantin@tokar.ru>: Show quoted text
> May be, 'PUT' replace to 'POST' ? > > return $self->request('PUT', @_); > > > > =item POST ( $url, [$body_content, %$headers] ) > > Preform an HTTP POST to the resource specified. Takes an optional body content and hashref of custom request headers. > > =cut > > sub POST { > my $self = shift; > return $self->request('PUT', @_); > } > >