getAuthStatus EDITOR

getAuthStatus API returns the current authentication status of the INK editor.

Syntax

getAuthStatus() : Promise<Object>

Example

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import INKAPI from './inkapi.js'

INKAPI.ready(async () => {

  const EDITOR = INKAPI.editor;

  EDITOR.getAuthStatus().then(authInfo => {

    console.log(authInfo);

  });

  //Or use async/await

  const authInfo = await EDITOR.getAuthStatus();
  console.log(authInfo);

  /*
    Console Output:

    {
      logged: true
    }

  */

});