Re: PerlAccessHandler for POST access

Mithun Bhattacharya <[email protected]> Thu, 4 Aug 2022 02:02:37 -0700
Newsgroups gmane.comp.apache.mod-perl
Message-ID <CAHTPV9+0ixSOo3nW=KWxSnEMy4M868AaB9WbXVbdhX+9kUmuyQ@mail.gmail.com>
  -d "param1=value1&param2=value2"

On Thu, Aug 4, 2022 at 12:29 AM pengyh <[email protected]> wrote:

>
>
>
> > You need to share the complete GET & POST request with the data section.
>
> OK as you can test this GET works:
>
>
> http://fb.cloudcache.net/?timestamp=12345&authkey=906434463477769dba188a4b670ef425
>
> but this POST doesn't work:
>
> curl -X POST -d 'timestamp=12345' \
>              -d 'authkey=906434463477769dba188a4b670ef425' \
>              http://fb.cloudcache.net/
>
>
> The server responds with:
>
> <h1>Forbidden</h1>
> <p>You don't have permission to access this resource.</p>
>
>
> So how to fix it?
>
> Thanks
>