0
Skip to Content
Ark Group FM
Contact
Services
About
Clients Portal
Ark Group FM
Contact
Services
About
Clients Portal
Contact
Services
About
Clients Portal

Shop

Filters

Product Name imgg-od3-smv6u_w0.png
Product Name
£25.00
Product Name imgg-od3-ate8vfe5.png
Product Name
£25.00
Product Name imgg-od3-2k2o2bww.png
Product Name
£25.00
Product Name imgg-od3-h1kgsiuu.png
Product Name
Sale Price: £20.00 Original Price: £25.00
Sale
Product Name imgg-od3-lzeck6b4.png
Product Name
£25.00
Product Name imgg-od3-bksx58yd.png
Product Name
£25.00

No results found

No results match your search. Try removing a few filters.

// --- 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