Re: PerlAccessHandler for POST access
pengyh <[email protected]> Thu, 4 Aug 2022 15:29:29 +0800
| Newsgroups | gmane.comp.apache.mod-perl |
|---|---|
| Message-ID | <[email protected]> |
> 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