Authenticator

[sdk/google/spreadsheet/Authenticator]


Authenticates the service user to use google spreadsheet drive. Example:

  1. session Id receives "spreadsheet_session"@0

  2. email receives "email@email.com"@0

  3. key receives "TopSecretKey"@0

  4. done sends null@0


Keywords: google, drive, authentication, sdk, spreadsheet

Input ports

  • session Id: string

    Receives the session id of the spreadsheet action. Example: "spreadsheet_session"

  • email: string

    Receives the email address of the service account. Example: "email@email.com"

  • key: string

    Receives the private key of the service account. Example: "TopSecretKey!"

Output ports

  • done: null

    Sends null if the action was successful. Example: null

  • error: {"error": string}

    Sends the error which happened during the execution of the action. Example:. {error: "Something went wrong!"}

Last updated