REST (API) Data Retrieval in Qlik Sense Desktop

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ก.ย. 2024
  • Learn how to effortlessly establish a REST connection and retrieve data from Qlik Sense Desktop in this comprehensive tutorial. Unlock the potential of your data visualization and analytics journey by seamlessly integrating REST APIs with Qlik Sense Desktop. Discover the step-by-step process of configuring authentication, setting up API endpoints, and harnessing real-time updates to transform raw data into actionable insights. Start your data-driven adventure today and reshape your understanding of data with Qlik Sense Desktop's intuitive and powerful REST connection capabilities
    For more please visit: www.udemy.com/...

ความคิดเห็น • 2

  • @sumitakhandual4504
    @sumitakhandual4504 11 หลายเดือนก่อน +2

    How to pass access token dynamically in qliksense rest api connection

    • @mahammadyagubli1578
      @mahammadyagubli1578  11 หลายเดือนก่อน +1

      Sure, Using With Connection You can achieve. as example:

      ElementsToLoad:
      Load * inline [
      ElementID
      12fa91
      1sy293
      h13d13

      ];
      Let j=0;
      for j = 0 to 99
      Let vElementID = peek('ElementID', $(j), 'Teams');
      RestConnectorMasterTable:
      SQL SELECT
      fields
      FROM "datad")
      FROM JSON (wrap on) "root" PK "__KEY_root"
      WITH CONNECTION(Url "www.domain.com/element?key=$(vElementID)/more_stuff/");
      NEXT j;
      DROP TABLE RestConnectorMasterTable;
      exit Script;