Introduction
Technical Guides
Documentation
Create Sessions
A session is a way to authenticate a user and get a token that can be used to access the Blokay platform.
Create JWT for your own
jsimport jwt from "jsonwebtoken"; const getJWT = () => { return jwt.sign( { data: { id: "YOUR_APP_USER_ID", name: "YOUR_APP_USER_NAME", extra1: "YOUR_APP_OWN_DATA", }, }, `secrent-YOUR-PRIVATE-KEY`, // your private token { expiresIn: "1h", // session expires in } ); };
How to create ChartLines
Click to go
How to create Table
Click to go