The designers of the Swish QR Code API have chosen to use POST as the method for generating and fetching QR codes. I do not understand this choice, but that's how it is. Consuming the API would be trivial if they had opted to utilize the GET method instead. But as it is, you need to write your own proxy to translate a GET to POST if you need to generate Swish payment QR Codes on the fly.
This is how I would like to use the API:
<img src="qr.asp?payee=9006032&amount=200">
How do you accomplish this using Classic ASP?
Background information:
Swish is a Swedish mobile payment provider and the QR codes are used to initiate a payment. In the QR code, the payee (mobile phone number for private individuals), the amount, and a message to the payee (for example an order number) may be specified.