auth.getCanvaUserToken

API reference for the auth.getCanvaUserToken method.

Gets a JSON Web Token (JWT) for the current user.

To learn more, see Verifying HTTP requests.

import { auth } from "@canva/user";
(async () => {
const token = await auth.getCanvaUserToken();
console.log(token);
})();

A Promise that resolves with the following string:

#resultstring
Required

The JSON Web Token for the current user.