0
I’m trying to integrate Pagseguro to my application, but I’m encountering huge difficulties, as there are numerous detailed information that I find ahead, leaving me more and more confused.
I have only 1 product that is sold per package, in which case there will be 3 different packages, to which the customer will choose only from the packages to make the payment, then would not need a cart.
I’m using this code that the Gypsy made available on one of the answers right here in the OS.
[HttpPost]
public ActionResult NovoPedido(int? id)
{
const bool isSandbox = true;
EnvironmentConfiguration.ChangeEnvironment(isSandbox);
try
{
var credentials = PagSeguroConfiguration.Credentials(isSandbox);
// Instanciar uma nova requisição de pagamento
var payment = new PaymentRequest { Currency = Currency.Brl };
Pacote pacote = db.Pacotes.Find(id);
// Adicionar produtos
payment.Items.Add(new Item(Convert.ToString(pacote.PacoteID), pacote.Titulo, 1, pacote.valor));
int clienteId = Repositorios.Funcoes.GetUsuario().PessoaID;
Pessoa pessoa= db.Pessoas.Find(clienteId);
Cidade cidade = db.Cidades.Find(pessoa.CidadeID);
Estado estado = db.Estados.Find(cidade.EstadoID);
// Informações de entrega
payment.Shipping = new Shipping
{
ShippingType = ShippingType.NotSpecified,
Cost = 0.00m,
Address = new Address(
"BRA",
estado.Sigla,
estado.Nome,
cidade.Nome,
musico.CEP,
musico.Rua,
Convert.ToString(pessoa.NResidencia),
musico.Complemento
)
};
// Informações do remetente
var nome = pessoa.Nome;
var email = pessoa.Email;
var celular = pessoa.Celular;
celular = Regex.Replace(celular, "[^0-9]", "");
int contador = celular.Count();
string ddd = celular.Substring(0, 2);
string numero = celular.Substring(2, (contador - 2));
payment.Sender = new Sender(
nome,
email,
new Phone(ddd, numero)
);
// URL a redirecionar o usuário após pagamento
payment.RedirectUri = new Uri("http://localhost:50534/Pagamento/Retorno");
// Informações extras para identificar o pagamento.
// Essas informações são livres para adicionar o que for necessário.
var senderCpf = new SenderDocument(Documents.GetDocumentByType("CPF"), musico.CPF);
payment.Sender.Documents.Add(senderCpf);
var paymentRedirectUri = payment.Register(credentials);
Console.WriteLine("URL do pagamento : " + paymentRedirectUri);
Console.ReadKey();
}
catch (PagSeguroServiceException exception)
{
Console.WriteLine(exception.Message + "\n");
foreach (var element in exception.Errors)
{
Console.WriteLine(element + "\n");
}
Console.ReadKey();
}
return View();
} //fim pedido
Does anyone know what this line below is?
Console.WriteLine("URL do pagamento : " + paymentRedirectUri);
For even this line quoted below, I bring the correct information. But when you get to the line above, the site is in a loop as if you were updating...
SenderDocument(Documents.GetDocumentByType("CPF"), musico.CPF);
payment.Sender.Documents.Add(senderCpf);
Note: I am learning Asp.net-MVC so I have difficulties in understanding some more technical terms. If you can make the answer as clear as possible I’d be grateful
– Fabio Souza