TIBCO Spotfire® Server and Environment - Installation and Administration

Configuring the Google Analytics and Google BigQuery connectors

To be able to use the Google Analytics and Google BigQuery connectors in Spotfire web clients, you must add OAuth credentials from your Google Cloud Platform project to the web player service configuration.

About this task

For detailed instructions, see the topic 'Enabling Google connectors in Spotfire web clients' in your version of the Spotfire Analyst User's Guide.

Procedure

  1. In the Google API console, create OAuth credentials for Spotfire in your Google project. In the OAuth credentials, add your Spotfire Server as a Redirect URI:
    https://<spotfire_server>/spotfire/wp/oauth2/code
    Note: For more information about configuring your Google Cloud Platform project, see the official documentation from Google.
  2. Then, in your web player service configuration, add your OAuth credentials Client ID and Client Secret in the <Spotfire.Dxp.Data.Adapters.GoogleCommon.Properties.Settings> settings in the Spotfire.Dxp.Worker.Host.exe.config file.
    <Spotfire.Dxp.Data.Adapters.GoogleCommon.Properties.Settings>
          <setting name="ClientId" serializeAs="String">
            <value>My Client ID</value>
          </setting>
          <setting name="ClientSecret" serializeAs="String">
            <value>My Client Secret</value>
          </setting>
    </Spotfire.Dxp.Data.Adapters.GoogleCommon.Properties.Settings>