I have an API that generates Base64 text that can be converted to a QR code. Using https://base64.guru/converter/decode/image (or any other similar tool).
Once it is generated we are getting a QR code.
using the phone or https://4qrcode.com/scan-qr-code.php we can decrypt the QR code back to text so I can use this text for the next API.
Example of the text to be converted to QR: https://www.dropbox.com/s/hiz3mckw1ynqxn4/QR-CodeSnippet.txt?dl=0
Here is the text example from QR:
- 0$cUYpeMdDiAHe&z+-o7C1ljDr8N<Hr=gG8pfqHni8sAUpGyUpA+,EbpH=M7vK[NfifD}kQ?Did8K5zBkr5jSd9s5>iw]wj&t$lE+::W[}1{asu@6UMNdRwu1F]2dmj,cMJ/FlQAlaHXe-u/VBk4&xY>dVVD7)ZeO@QMvi)uv
I was advised to use the libraries below but I'm not sure where to start, so I would appreciate any explanations https://mvnrepository.com/artifact/com.google.zxing/core/3.4.1
https://mvnrepository.com/artifact/com.github.jai-imageio/jai-imageio-core/1.4.0
https://mvnrepository.com/artifact/com.google.zxing/javase/3.4.1
https://mvnrepository.com/artifact/com.beust/jcommander/1.78