Lightbox via API

2

I have a Lightbox working perfectly fine, using:

<!-- INICIO FORMULARIO BOTAO PAGSEGURO -->
<form action="https://pagseguro.uol.com.br/checkout/v2/cart.html?action=add" method="post" onsubmit="PagSeguroLightbox(this,
    {
         success : function(transactionCode)
         {
            user_transactionCode_save(1, 2, transactionCode);
            alert('<b>Seu código de transação é:</b> ' + transactionCode);
         },
         abort : function() {
            document.write('<b>Você não concluiu a sua compra</b>');
         }
    }); return false;"
>

<!-- NÃO EDITE OS COMANDOS DAS LINHAS ABAIXO -->
<input type="hidden" name="itemCode" value="*****************" />
<input type="image" src="https://p.simg.uol.com.br/out/pagseguro/i/botoes/pagamentos/209x48-comprar-assina.gif"name="submit" alt="Pague com PagSeguro - é rápido, grátis e seguro!" />
</form>
<!-- FINAL FORMULARIO BOTAO PAGSEGURO -->

It's quite simple, but the return of the transactionCode is always 1.

What's up?

    
asked by anonymous 08.07.2016 / 19:16

0 answers