Public APIs - Guide for developers to access Visual Quiz Builder’s endpoints.

This documentation will guide developers through all the information needed to access our API endpoints that are used to retrieve quiz data programatically.

Context

  1. Generating a secret key
  2. What is the purpose of the secret key?
  3. How to generate the token?
  4. How can you access Visual Quiz Builder data / VQB API endpoints?

Step - 1. Generating a secret key

Step - 2. What is the purpose of the secret/public key?

Step - 3. How to generate the token?

Python

**jwt.encode(payload, JWT_SECRET, JWT_ALGORITHM)**
# Payload - Data to be passed - If no data to be passed - payload will be {}
#JWT_SECRET - Secret key from the account
#JWT_ALGORITHM - HS256

JavaScript

import jwtEncode from '<https://cdn.jsdelivr.net/npm/[email protected]/+esm>';

const secret = 'VQB Private API key / JWT_SECRET';
const data = {};
const jwt = jwtEncode(data, secret);

console.log(jwt);

STEP - 4. How can you access VQB data - API endpoints?