Validate the current access token
true if the token is valid, false otherwise
import { validateToken } from "@cpod/sdk";const isValid = await validateToken();if (!isValid) { // Token expired, need to refresh} Copy
import { validateToken } from "@cpod/sdk";const isValid = await validateToken();if (!isValid) { // Token expired, need to refresh}
Validate the current access token