You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The no-longer-maintained ZXing Barcode Scanner app (com.google.zxing.client.android) supports a URI scheme that allows web apps to scan barcodes and retrieve the results…
Basically, when one of these links is opened, an Android mobile browser will redirect to the app, scan a barcode, and then redirect back to the return UI specified, filling in query parameters like {RAWCODE} (the raw text of the barcoe) and {FORMAT} (e.g. QR).
I have used this facility in a couple of web apps I've written myself. (I'm also a contributor to the core ZXing library, and the maintainer of a Python wrapper for it.)
tl;dr It would be really great if this much more modern barcode scanning app would handle the ZXing URI schemes, since this would allow web apps that rely on this mechanism to continue working.
The text was updated successfully, but these errors were encountered:
The no-longer-maintained ZXing Barcode Scanner app (com.google.zxing.client.android) supports a URI scheme that allows web apps to scan barcodes and retrieve the results…
As documented at https://github.com/zxing/zxing/wiki/Scanning-From-Web-Pages, these URIs look like the following:
http://zxing.appspot.com/scan?ret=http%3A%2F%2Ffoo.com%2Fproducts%2F%7BCODE%7D%2Fdescription&SCAN_FORMATS=UPC_A,EAN_13
zxing://scan?same_params
Basically, when one of these links is opened, an Android mobile browser will redirect to the app, scan a barcode, and then redirect back to the return UI specified, filling in query parameters like
{RAWCODE}
(the raw text of the barcoe) and{FORMAT}
(e.g.QR
).I have used this facility in a couple of web apps I've written myself. (I'm also a contributor to the core ZXing library, and the maintainer of a Python wrapper for it.)
tl;dr It would be really great if this much more modern barcode scanning app would handle the ZXing URI schemes, since this would allow web apps that rely on this mechanism to continue working.
The text was updated successfully, but these errors were encountered: