QR code decoder
Check the contents of the QR code.
QR 코드에 담긴 내용을 확인합니다.
Result:
-
curl -G -d "api=Insert your API key here" --data-urlencode "url=Insert URL here"
API
cURL
# -*- coding: utf-8 -*-
from http.client import HTTPSConnection
from json import loads
from urllib import parse
url = "Insert URL here"
url = parse.quote(url)
api = "Insert your API key here"
param = "?api=" + api + "&url=" + url
conn = HTTPSConnection("501v32.com")
conn.request("GET", "/_functions/qrCodeDecoder" + param)
rspStr = conn.getresponse().read().decode()
rspDic = loads(rspStr)
print( rspDic["decoded"] )
API
Python 3
API
Javascript
async function qrCodeDecoder(){
let urlQR = "Insert URL here";
let api = "Insert API key here";
let url = "https://501v32.com/_functions/qrCodeDecoder?api=" + api + "&url=" + urlQR;
let rspDic = await (await fetch(url)).json();
console.log( rspDic["decoded"] );
} qrCodeDecoder();

Try again