Hi
As already seen in another topic, the Google API that generates QR code is giving an error
Is there any other Google API that has been replaced and that generates Qrcode? If not, could you recommend me another one?
Regards
Eduardo
Hi
As already seen in another topic, the Google API that generates QR code is giving an error
Is there any other Google API that has been replaced and that generates Qrcode? If not, could you recommend me another one?
Regards
Eduardo
Yeah that service was deprecated a while back but finally went silent… I swapped in one from quickchart.io and pasted a sample of using it in Apps Script below:
function getQRCode(url) {
const imageData = UrlFetchApp.fetch(‘https://quickchart.io/chart?cht=qr&chs=300x300&chl=’ + url, {
‘method’: ‘get’,
‘muteHttpExceptions’ : false,
});
return imageData
}
Thank you very much Charles