You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Olá Boa noite.
Depois de ter validado os certificados, campo id e secret com o pessoal do sicredi, ainda recebo um erro, porem diferente
Gostaria de saber, se alguem poderia me ajudar?
Estou fazendo dessa forma
if (rb_pixDinamico.IsChecked == true)
{
new StartConfig(
_baseUrl: config.URLPSP,
_clientId: config.ClienteID,
_clientSecret: config.ClienteSecret,
_certificate: new System.Security.Cryptography.X509Certificates.X509Certificate2(config.LocalCertificadoBanco)
);
//Iniciando a cobranca
decimal VL = Convert.ToDecimal(lb_valortotalvenda.Content.ToString());
string valorCobranca = VL.ToString("N2").Replace(",", ".");
var cob = new CobRequest(_chave: config.ChavePix.Trim())
{
Calendario = new Calendario
{
Expiracao = 3600
},
Valor = new Valor
{
Original = valorCobranca
},
SolicitacaoPagador = "Venda no estabelecimento.",
};
var cobRequest = new CobRequestService();
var cb = await cobRequest.Create(System.Guid.NewGuid().ToString("N"), cob);
//Consultar a cobranca gerada
var cob2 = await cobRequest.GetByTxId(cb.Txid);
var payload = cob2.ToPayload(new Merchant(mempresa.RazaoSocial.Trim(), mempresa.Cidade.Trim()));
var stringToQrCode = payload.GenerateStringToQrCode();
lbChavePix.Text = stringToQrCode;
imgQrPix.Source = BitmapToImageSource(GerarQRCode(Convert.ToInt32(imgQrPix.Width), Convert.ToInt32(imgQrPix.Height), stringToQrCode));
//Consultando pagamento
var cb_ret = await cobRequest.GetByTxId(stringToQrCode);
}
The text was updated successfully, but these errors were encountered:
Olá Boa noite.
Depois de ter validado os certificados, campo id e secret com o pessoal do sicredi, ainda recebo um erro, porem diferente
Gostaria de saber, se alguem poderia me ajudar?
Estou fazendo dessa forma
if (rb_pixDinamico.IsChecked == true)
{
The text was updated successfully, but these errors were encountered: