सीधा लिंक

अपने कम्यूनिटी कनेक्टर के किसी भी डिप्लॉयमेंट को लिंक की मदद से शेयर किया जा सकता है. जब कोई उपयोगकर्ता इस लिंक पर क्लिक करता है, तो वह उन्हें सीधे Looker Studio पर ले जाएगा. सीधे Looker Studio में, आपके चुने गए कनेक्टर होंगे.

अपने कम्यूनिटी कनेक्टर का सीधा लिंक पाने के लिए, यह तरीका अपनाएं:

  1. Apps Script पर जाएं और शेयर करने के लिए, कम्यूनिटी कनेक्टर का प्रोजेक्ट खोलें. डिप्लॉयमेंट > डिप्लॉयमेंट मैनेज करें पर क्लिक करें.
  2. शेयर करने के लिए चालू डिप्लॉयमेंट पर क्लिक करें. Looker Studio के ऐड-ऑन यूआरएल में, चुने गए डिप्लॉयमेंट के लिए Looker Studio का डायरेक्ट लिंक दिखेगा. इसके बाद, कॉपी करें पर क्लिक करें. इसके अलावा, डिप्लॉयमेंट आईडी में जाकर, कॉपी करें पर क्लिक करें. इसके बाद, कॉपी किए गए डिप्लॉयमेंट आईडी को नीचे दिए गए यूआरएल में जोड़ें. ऐसा करके, एक डायरेक्ट लिंक बनाया जा सकता है:
    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"
}

दूसरा चरण: यूआरएल को कोड में बदलना

कॉन्फ़िगरेशन JSON बनने के बाद, यूआरएल, ऑब्जेक्ट को कोड में बदल देता है. एक आसान विकल्प, encodeURIComponent JavaScript फ़ंक्शन का इस्तेमाल करना है.

कोड में बदलने का यूआरएल

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

नतीजे के तौर पर, नीचे दी गई कोड में बदली गई स्ट्रिंग मिलती है:

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

तीसरा चरण: यूआरएल बनाना

नीचे दिया गया कोड, डायरेक्ट लिंक बनाता है. ध्यान दें कि यूआरएल बनाने के लिए आपको कनेक्टर के डिप्लॉयमेंट आईडी की ज़रूरत होगी.

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;

इससे, कोड में बदला गया यह यूआरएल मिलता है, जो कनेक्टर के लिए पहले से भरा हुआ एक डायरेक्ट लिंक होता है:

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