I'm trying to post to an HTTPS script (i.e. PayPal's payment system) and I'm using the LWP::browser->post function.
The problem is post() seems to be encoding the name/value pairs and PayPal's system needs to receive the data unencoded.
Is there a way to configure the post() function to not do any data encoding? Or is there another LWP function I can use to post the data that sends the data unencoded?