Liên kết Trực tiếp

Bạn có thể chia sẻ bất kỳ quá trình triển khai Trình kết nối cộng đồng nào bằng một đường liên kết. Khi người dùng truy cập vào đường liên kết này, họ sẽ được chuyển thẳng đến Looker Studio bằng cách chọn trình kết nối.

Để nhận đường liên kết trực tiếp cho trình kết nối cộng đồng của bạn, hãy làm theo các bước sau:

  1. Chuyển đến Apps Script rồi mở dự án của Trình kết nối cộng đồng để chia sẻ. Nhấp vào Triển khai > Quản lý triển khai.
  2. Nhấp vào hoạt động triển khai Đang hoạt động để chia sẻ. Trong URL tiện ích bổ sung Looker Studio, đường liên kết trực tiếp đến Looker Studio cho quy trình triển khai đã chọn sẽ xuất hiện, hãy nhấp vào Sao chép. Ngoài ra, trong phần Mã triển khai, hãy nhấp vào Sao chép rồi thêm mã triển khai đã sao chép vào URL sau để tạo đường liên kết trực tiếp:
    https://lookerstudio.google.com/datasources/create?connectorId=DEPLOYMENT_ID
  3. The direct link can be shared with users. For example, send it via email, post it on a website, blog, social media, etc.

If you know the configuration values that your users will want ahead of time, you can provide additional query parameters to pre-populate the connector configuration. The pre-populated configuration can still be modified by users.

To create a preconfigured direct link, add the following optional query parameters:

  • connectorConfig - A URL encoded JSON string containing key-value pairs to use to pre-populate the connector configuration.

    • Key names must match the parameter names defined in the connector config.
    • TEXTINPUT, TEXTAREA, and SELECT_SINGLE values should be strings.
    • CHECKBOX values should be a boolean.
    • SELECT_MULTIPLE values should be an array of strings.
  • reportTemplateId - An identifier for the default reporting template to use for the connector. If a default template is set in the connector manifest, this value will override the manifest. See How To Add The Report Template for the value to use.

Example

The following example illustrates how to create a direct link to the StackOverflow Questions community connector. The direct link pre-populates the connector configuration to use the looker-studio tag on Stack Overflow.

Step 1: Create the config JSON

The keys for the config JSON are the names of each configuration item. For the Stack Overflow config, these names are tagged, pagesize, and sort.

JSON before encoding

{
    "tagged": "looker-studio",
    "pagesize": 25,
    "sort": "activity"
}

Bước 2: Mã hoá URL

Sau khi tạo cấu hình JSON, hãy mã hoá đối tượng URL. Một lựa chọn dễ dàng là sử dụng hàm JavaScript encodeURIComponent.

URL mã hoá

// get a reference to the jsonConfig
var jsonConfig;
var encoded = encodeURIComponent(jsonConfig);

Kết quả là chuỗi đã mã hoá sau:

"%7B%22tagged%22%3A%22looker-studio%22%2C%22pagesize%22%3A%2225%22%2C%22sort%22%3A%22activity%22%7D"

Bước 3: Tạo URL

Mã sau đây tạo đường liên kết trực tiếp. Xin lưu ý rằng bạn cần có ID triển khai của trình kết nối để tạo URL.

data-studio/links.gs
// These variables should be filled in as necessary for your connector.
var configJSON;
var templateId;
var deploymentId;

var params = [];

const jsonString = JSON.stringify(configJSON);
const encoded = encodeURIComponent(jsonString);
params.push('connectorConfig=' + encoded);

params.push('reportTemplateId=' + templateId);

params.push('connectorId=' + deploymentId);

const joinedParams = params.join('&');
const URL = 'https://datastudio.google.com/datasources/create?' + joinedParams;

Thao tác này sẽ trả về URL được mã hoá sau, một đường liên kết trực tiếp được điền sẵn cho trình kết nối:

https://lookerstudio.google.com/datasources/create?connectorConfig=%7B%22tagged%22%3A%22looker-studio%22%2C%22pagesize%22%3A%2225%22%2C%22sort%22%3A%22activity%22%7D&reportTemplateId=1lR9CGfx3uyQp6oz7oAgA1rsqZViA-IQs&connectorId=AKfycbwGMj-oe532y-NEbMHo-KLUCEz0EEGOZj-3lhEgw7q65-hs-T_F9B3Qjw