Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Import Macro Repair

...

  1. Open workflow.config to add google as login service
  2. In loginServices add a new element as below

    Code Block
    languagexml
    <add clientType="Google" enabled="true" clientId="<googleClientId>" clientSecret="<googleClientSecret>" 
         scope="https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email" 
         serviceAccountId="<googleServiceAccountId>" 
         serviceAccountKey="<pathToP12File>;<password>" />

...

  1. If you want to enable Google Drive; in fileServices add new element as below;

    Code Block
    languagexml
    <fileServices>
      <add clientType="Desktop" />
      <add clientType="Webcam" />
      <add clientType="GoogleDrive" scope="https://www.googleapis.com/auth/drive"/>
    </fileServices> fileServices>
  2. If you want to allow offline access to API from without user interaction please add "offline" scope with space separated.

...