Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/garu/net-moip

Interface com o gateway de pagamentos Moip
https://github.com/garu/net-moip

Last synced: 11 days ago
JSON representation

Interface com o gateway de pagamentos Moip

Awesome Lists containing this project

README

        

Net-Moip
========

Interface com o gateway de pagamentos Moip.

```perl
use Net::Moip;

my $gateway = Net::Moip->new(
token => 'MY_MOIP_TOKEN',
key => 'MY_MOIP_KEY',
);

my $res = $gateway->pagamento_unico({
razao => 'Pagamento para a Loja X',
tipo_validacao => 'Transparente',
valor => 59.90,
id_proprio => 1,
pagador => {
id_pagador => 1,
nome => 'Cebolácio Júnior Menezes da Silva',
email => '[email protected]',
endereco_cobranca => {
logradouro => 'Rua do Campinho',
numero => 9,
bairro => 'Limoeiro',
cidade => 'São Paulo',
estado => 'SP',
pais => 'BRA',
cep => '11111-111',
telefone_fixo => '(11)93333-3333',
},
},
});

if ($res->{status} eq 'Sucesso') {
print $res->{token};
print $res->{id};
}
```

### Instalação ###

Usando o cpan:

cpan Net::Moip

Usando o cpanm:

cpanm Net::Moip

Instalação manual:

perl Makefile.PL
make
make test
make install