npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@red-unica/libreria-conexiones-api

v0.0.18

Published

Libreria con la configuracion necesaria para el consumo de APIs de RedUnica

Downloads

144

Readme

@red-unica/libreria-conexiones-api

Implementación de cliente para el consumo de APIs para todo Red Única.

Intalación

$ npm install @red-unica/libreria-conexiones-api

Uso

Cómo armar la peticion

const ConexionesApi = require('@red-unica/libreria-conexiones-api');
const url = "https://dev-api.bancoazteca.com.mx:8080/identidad-digital/cliente-unico/clientes/indicadores/v1/busquedas";
const requestObject = {
    data: {"idPais": 1, "idCanal": 24, "idSucursal": 9495, "folio": 1549}, // OPCIONAL, corresponde al Body de la petición
    params: {"idPais": 1, "idCanal": 24, "idSucursal": 9495, "folio": 1549}, // OPCIONAL, corresponde a parametros del query String ej. idPais=1&idCanal=24&idSucursal=9495&folio=1549
    timeout: 2000 //OPCIONAL, Indica el tiempo de espera en milisegundos para la peticion, si la peticion tarda más tiempo que el especificado será cancelada
};
const headers = [['nombre-cabecero-1', 'valor-1'],['nombre-cabecero-2', 'valor-2']];
ConexionesApi.post(url, requestObject, headers);
ConexionesApi.put(url, requestObject, headers);
ConexionesApi.delete(url, requestObject, headers);
ConexionesApi.get(url, requestObject, headers);
ConexionesApi.patch(url, requestObject, headers);

Cómo realizar la peticion

// Opcion 1:
ConexionesApi.post(url, requestObject, headers).then(respuesta=>{
    //Manipular la respuesta exitosa
}).catch(error=>{
    //Manipular el error
});

//Opcion 2:
try{
    const respuesta = await ConexionesApi.post(url, requestObject, headers);
    //Manipular la respuesta exitosa
}catch(error){
    //Manipular el error
}

Para mayor información sobre el parametro requestObject visitar la documentación de Axios

Variables de entorno

En caso de usar la libreria en una micro-frontend React

Variables comunes:

|Variable|Descripción|Ejemplo|Valor por default| |---|---|---|---| |REACT_APP_URL_TOKEN|Porcion de la URL para la generación del Access Token|/oauth2/v1/token|| |REACT_APP_JUEZ_FRASE_SECRETA|Frase secreta usada por la libreria @red-unica/libreria-cifrado para desencriptar las credenciales|Fr4zeR3dUn1c4C3kr3t4||

Variables para consumo de APIS externas DMZ (version móvil):

|Variable|Descripción|Ejemplo|Valor por default| |---|---|---|---| |REACT_APP_CONSUMER_KEY_EXT|Consumer Key proporcionado por Gobierno de Apis. Tiene que estar cifrado usando la libreria @red-unica/libreria-cifrado|to9SDSAc8VTG9aiXGPBYzX/gxc/H+uGn14Kq1b9nV/oaTxEoihwj/Ak5LYk7rmhU|| |REACT_APP_CONSUMER_SECRET_EXT|Consumer Secret proporcionado por Gobierno de Apis. Tiene que estar cifrado usando la libreria @red-unica/libreria-cifrado|qQHubya9xfpRlrZBCQkbUfOfZe1rrL2wO4XHAdDSduw||| |REACT_APP_BASE_URL_EXT|URL Base para consultar el Token en de forma externa|https://api.bancoazteca.com.mx|||

Variables para consumo de APIS internas (version PC):

|Variable|Descripción|Ejemplo|Valor por default| |---|---|---|---| |REACT_APP_CONSUMER_KEY_INT|Consumer Key proporcionado por Gobierno de Apis. Tiene que estar cifrado usando la libreria @red-unica/libreria-cifrado|to9SDSAc8VTG9aiXGPBYzX/gxc/H+uGn14Kq1b9nV/oaTxEoihwj/Ak5LYk7rmhU|| |REACT_APP_CONSUMER_SECRET_INT|Consumer Secret proporcionado por Gobierno de Apis. Tiene que estar cifrado usando la libreria @red-unica/libreria-cifrado|qQHubya9xfpRlrZBCQkbUfOfZe1rrL2wO4XHAdDSduw||| |REACT_APP_BASE_URL_INT|URL Base para consultar el Token en de forma externa|https://prod-api.bancoazteca.com.mx|||

Asegurarse que las variables de ambiente esten definidas dentro del frontend-contenedor-principal

En caso de usar la libreria en una aplicación Express

Variables comunes:

|Variable|Descripción|Ejemplo|Valor por default| |---|---|---|---| |EXPRESS_APP_URL_TOKEN|Porcion de la URL para la generación del Access Token|/oauth2/v1/token|| |EXPRESS_APP_JUEZ_FRASE_SECRETA|Frase secreta usada por la libreria @red-unica/libreria-cifrado para desencriptar las credenciales|Fr4zeR3dUn1c4C3kr3t4||

Variables para consumo de APIS externas:

|Variable|Descripción|Ejemplo|Valor por default| |---|---|---|---| |EXPRESS_APP_CONSUMER_KEY_EXT|Consumer Key proporcionado por Gobierno de Apis. Tiene que estar cifrado usando la libreria @red-unica/libreria-cifrado|to9SDSAc8VTG9aiXGPBYzX/gxc/H+uGn14Kq1b9nV/oaTxEoihwj/Ak5LYk7rmhU|| |EXPRESS_APP_CONSUMER_SECRET_EXT|Consumer Secret proporcionado por Gobierno de Apis. Tiene que estar cifrado usando la libreria @red-unica/libreria-cifrado|qQHubya9xfpRlrZBCQkbUfOfZe1rrL2wO4XHAdDSduw||| |EXPRESS_APP_BASE_URL_EXT|URL Base para consultar el Token en de forma externa|https://api.bancoazteca.com.mx|||

Variables para consumo de APIS internas:

|Variable|Descripción|Ejemplo|Valor por default| |---|---|---|---| |EXPRESS_APP_CONSUMER_KEY_INT|Consumer Key proporcionado por Gobierno de Apis. Tiene que estar cifrado usando la libreria @red-unica/libreria-cifrado|to9SDSAc8VTG9aiXGPBYzX/gxc/H+uGn14Kq1b9nV/oaTxEoihwj/Ak5LYk7rmhU|| |EXPRESS_APP_CONSUMER_SECRET_INT|Consumer Secret proporcionado por Gobierno de Apis. Tiene que estar cifrado usando la libreria @red-unica/libreria-cifrado|qQHubya9xfpRlrZBCQkbUfOfZe1rrL2wO4XHAdDSduw||| |EXPRESS_APP_BASE_URL_INT|URL Base para consultar el Token en de forma externa|https://prod-api.bancoazteca.com.mx|||

License

ISC ©