Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

QR code with http POST

Tags:

http

post

qr-code

It's possible create a QR code that read an URL with some parameters in POST ?

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

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

like image 889
Anarchy Avatar asked Jan 08 '14 14:01

Anarchy


People also ask

Do I need to include HTTP in QR code?

You should be fine without http if your url starts with www. but it's not your case. As Sean points out, you should use all-caps urls instead. Note that sadly, some QR code readers will recognise a URL starting with upper-case HTTP:// or HTTPS:// but then fail to open it!

Can a QR code contain a URL?

The data stored in a QR code can include website URLs, phone numbers, or up to 4,000 characters of text. QR codes can also be used to: Link directly to download an app on the Apple App Store or Google Play.


1 Answers

No.

A QR code can only contain text - not instructions.

What you could do is have a script on your server which converts the GET into a POST - although I can't quite see why you would want that.

like image 169
Terence Eden Avatar answered Oct 17 '22 20:10

Terence Eden