Skip to content

Instantly share code, notes, and snippets.

View gustavoreis's full-sized avatar

Gustavo Reis gustavoreis

View GitHub Profile
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<script>
var element = document.getElementById("payment_card_confirm");
element.classList.add("g-recaptcha");
element.dataset.sitekey = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
element.dataset.callback = "onSubmitCaptcha";
function onSubmitCaptcha(token) {
document.getElementById("payment_form").submit();
}
@gustavoreis
gustavoreis / productUrl
Last active April 10, 2018 14:50
Function de Google Spreadsheet que permite listar URLs por SKU.
function testProductUrl() {
var host = "www.domino.com.br";
var username = "USER_API";
var password = "SENHA_API"
//productUrl('34241', host, username, password);
productUrl('17345', host, username, password);
}
function productUrl(sku, host, username, password) {