top of page

Potencia: 800 W

Batería: 60-72v/ 20AH

Cargador: 60-72v/3A

Velocidad: 49 km/HR

FRENO DE DISCO EN AMBAS LLANTAS

PEDALES

Autonomía: 65-75 KM

Soporte en KG: 200

Tiempo de carga 6-8 Hrs

Peso en KG 54

Medidas L: 154 Al: 118 An: 48

Bicicleta Eléctrica ÁGUILA

$16,000.00 Precio
$14,900.00Precio de oferta
Solo 2 disponible(s)
    bottom of page
    // --- SERVER CODE --- const jwt = require('jsonwebtoken'); const secret = process.env.CHATBOT_IDENTITY_SECRET; // Your chatbase secret key (should be stored as a secret not in the code) const user = await getSignedInUser(); // Get the current user signed in to your site const token = jwt.sign( { user_id: user.id, // Your user's id email: user.email, // User's email stripe_accounts: user.stripe_accounts, // User's stripe accounts for stripe integration // ... other custom attributes }, secret, { expiresIn: '1h' } ); // --- CLIENT CODE --- const token = await getUserToken(); // Get the token from your server window.chatbase('identify', { token }); // identify the user with Chatbase