@CaspianXI to Ask Lemmy • 2 years agoWhat's a company secret you can share now that you no longer work there?message-square908arrow-up11.42Karrow-down114
arrow-up11.4Karrow-down1message-squareWhat's a company secret you can share now that you no longer work there?@CaspianXI to Ask Lemmy • 2 years agomessage-square908
minus-square@SzethFriendOfNimilink2•1 year agoGet and post requests are logged The difference is that the logged get requests will also include any query params GET /some/uri?user=Alpha&pass=bravo While a post request will have those same params sent as part of a form body request. Those aren’t logged and so it would look like this POST /some/uri
Get and post requests are logged
The difference is that the logged get requests will also include any query params
GET /some/uri?user=Alpha&pass=bravo
While a post request will have those same params sent as part of a form body request. Those aren’t logged and so it would look like this
POST /some/uri