1
0
-1
- Would like to ask is that possible to set expiry date for QR Code and make it invalid once pass the expiry date
- Possible to do validation on QR code?
CommentAdd your comment...
2 answers
- 10-1
----
Add your comment... - 10-1
I currently have similar thing, my strategy is by using JWT token. The QR contains link to some particular web API which has JWT token as URL parameter. You can do the processing of JWT token all inside the target web API.
- Christopher Yong
thanks for the update. Can i know more info about it? any link can be share?
- Aristo
I use JJWT library. JWT is quite common these days, normally is used as authorization token, for example mobile authentication. You can find lots of tutorial available in the internet.
Add your comment...