// --- 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
top of page
Video Channel Name Play Video
All Videos
Video Title This is a great space to update your audience with a description of your video. Include information like what the video is about, who produced it, where it was filmed, and why it’s a must-see for viewers. Remember this is a showcase for your professional work, so be sure to use intriguing language that engages viewers and invites them to sit back and enjoy.
Video Title This is a great space to update your audience with a description of your video. Include information like what the video is about, who produced it, where it was filmed, and why it’s a must-see for viewers. Remember this is a showcase for your professional work, so be sure to use intriguing language that engages viewers and invites them to sit back and enjoy.
Video Title This is a great space to update your audience with a description of your video. Include information like what the video is about, who produced it, where it was filmed, and why it’s a must-see for viewers. Remember this is a showcase for your professional work, so be sure to use intriguing language that engages viewers and invites them to sit back and enjoy.
Video Title This is a great space to update your audience with a description of your video. Include information like what the video is about, who produced it, where it was filmed, and why it’s a must-see for viewers. Remember this is a showcase for your professional work, so be sure to use intriguing language that engages viewers and invites them to sit back and enjoy.
Video Title This is a great space to update your audience with a description of your video. Include information like what the video is about, who produced it, where it was filmed, and why it’s a must-see for viewers. Remember this is a showcase for your professional work, so be sure to use intriguing language that engages viewers and invites them to sit back and enjoy.
Video Title This is a great space to update your audience with a description of your video. Include information like what the video is about, who produced it, where it was filmed, and why it’s a must-see for viewers. Remember this is a showcase for your professional work, so be sure to use intriguing language that engages viewers and invites them to sit back and enjoy.
Video Title This is a great space to update your audience with a description of your video. Include information like what the video is about, who produced it, where it was filmed, and why it’s a must-see for viewers. Remember this is a showcase for your professional work, so be sure to use intriguing language that engages viewers and invites them to sit back and enjoy.
Video Title This is a great space to update your audience with a description of your video. Include information like what the video is about, who produced it, where it was filmed, and why it’s a must-see for viewers. Remember this is a showcase for your professional work, so be sure to use intriguing language that engages viewers and invites them to sit back and enjoy.
bottom of page