Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/garu/net-moip
- Owner: garu
- License: artistic-2.0
- Created: 2014-10-29T05:03:40.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-10-16T19:39:49.000Z (about 7 years ago)
- Last Synced: 2024-11-05T21:50:29.483Z (about 2 months ago)
- Language: Perl
- Size: 17.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
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