QR code with http post

Is it possible to create a QR code that reads a URL with some parameters in POST?

Ex. QR code with GET URL: http://mysite.com?cod=2

Ex. QR code with POST URL [cod] = 2: http://mysite.com

+6
source share
1 answer

No.

A QR code can only contain text - not instructions.

What you can do is have a script on your server that converts GET to POST , although I cannot understand why you wanted it.

+3
source

All Articles