Back to All

Tokenizar Tarjetas Node.js

Estoy intentando tokenizar de la siguiente manera:

axios.post(
'https://api.conekta.io/tokens',
params,
{
headers: {
'accept': 'application/vnd.conekta-v2.1.0+json',
'authorization': 'Bearer ' + MI_LLAVE_PRIVADA,
'content-type': 'application/json'
}
}
)

Pero no me es posible, obtengo la siguiente respuesta:

{"details": [{"code": "conekta.errors.authentication.tokenization.no_js_agent", "debug_message": "We can only process data from cards that have been properly tokenized or that come from a site that meets PCI compliance. If your site meets the standards , send a copy of your certificate and PCI contacto@conekta attribute io requests access.", "message": "Solamente podemos procesar datos de tarjetas que han sido tokenizadas o que provengan de sitios seguros que cumplan los estándares de PCI.", "param": null}], "log_id": "64c74d8483ff12001aa9ceef", "object": "error", "type": "authentication_error"}

Espero puedan ayudarme.