<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to connect to qlik sense data using REST API in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-connect-to-qlik-sense-data-using-REST-API/m-p/1581717#M10574</link>
    <description>You can use the rest connector to do that.&lt;BR /&gt;&lt;BR /&gt;As an example, i'm using the &lt;A href="https://jsonplaceholder.typicode.com" target="_blank"&gt;https://jsonplaceholder.typicode.com&lt;/A&gt; link that has some rest functionalities.&lt;BR /&gt;&lt;BR /&gt;Using the wizard, it gives the code:&lt;BR /&gt;&lt;BR /&gt;CUSTOM CONNECT TO "Provider=QvRestConnector.exe;url=&lt;A href="https://jsonplaceholder.typicode.com/posts;timeout=30;method=GET;sendExpect100Continue=True;autoDetectResponseType=true;checkResponseTypeOnTestConnection=true;keyGenerationStrategy=0;authSchema=anonymous;skipServerCertificateValidation=false;useCertificate=No;certificateStoreLocation=CurrentUser;certificateStoreName=My;PaginationType=None;allowResponseHeaders=false;allowHttpsOnly=false;XUserId=EWIHRcB;XPassword=TMIPfVA" target="_blank"&gt;https://jsonplaceholder.typicode.com/posts;timeout=30;method=GET;sendExpect100Continue=True;autoDetectResponseType=true;checkResponseTypeOnTestConnection=true;keyGenerationStrategy=0;authSchema=anonymous;skipServerCertificateValidation=false;useCertificate=No;certificateStoreLocation=CurrentUser;certificateStoreName=My;PaginationType=None;allowResponseHeaders=false;allowHttpsOnly=false;XUserId=EWIHRcB;XPassword=TMIPfVA&lt;/A&gt;;";&lt;BR /&gt;&lt;BR /&gt;RestConnectorMasterTable:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"userId",&lt;BR /&gt;"id",&lt;BR /&gt;"title",&lt;BR /&gt;"body"&lt;BR /&gt;FROM JSON (wrap on) "root";&lt;BR /&gt;&lt;BR /&gt;[root]:&lt;BR /&gt;LOAD [userId],&lt;BR /&gt;[id],&lt;BR /&gt;[title],&lt;BR /&gt;[body]&lt;BR /&gt;RESIDENT RestConnectorMasterTable;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;DROP TABLE RestConnectorMasterTable;&lt;BR /&gt;&lt;BR /&gt;Which loads the data from :&lt;BR /&gt;&lt;A href="https://jsonplaceholder.typicode.com/posts" target="_blank"&gt;https://jsonplaceholder.typicode.com/posts&lt;/A&gt;</description>
    <pubDate>Fri, 17 May 2019 19:48:50 GMT</pubDate>
    <dc:creator>felipedl</dc:creator>
    <dc:date>2019-05-17T19:48:50Z</dc:date>
    <item>
      <title>How to connect to qlik sense data using REST API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-connect-to-qlik-sense-data-using-REST-API/m-p/1581375#M10565</link>
      <description>&lt;P&gt;i have loaded the data in qlik sense desktop. now i want to retrieve this data by query or by using rest API call.&lt;BR /&gt;Is there any way to achieve this.&lt;/P&gt;</description>
      <pubDate>Fri, 17 May 2019 06:16:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-connect-to-qlik-sense-data-using-REST-API/m-p/1581375#M10565</guid>
      <dc:creator>muhammadHamza</dc:creator>
      <dc:date>2019-05-17T06:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to connect to qlik sense data using REST API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-connect-to-qlik-sense-data-using-REST-API/m-p/1581717#M10574</link>
      <description>You can use the rest connector to do that.&lt;BR /&gt;&lt;BR /&gt;As an example, i'm using the &lt;A href="https://jsonplaceholder.typicode.com" target="_blank"&gt;https://jsonplaceholder.typicode.com&lt;/A&gt; link that has some rest functionalities.&lt;BR /&gt;&lt;BR /&gt;Using the wizard, it gives the code:&lt;BR /&gt;&lt;BR /&gt;CUSTOM CONNECT TO "Provider=QvRestConnector.exe;url=&lt;A href="https://jsonplaceholder.typicode.com/posts;timeout=30;method=GET;sendExpect100Continue=True;autoDetectResponseType=true;checkResponseTypeOnTestConnection=true;keyGenerationStrategy=0;authSchema=anonymous;skipServerCertificateValidation=false;useCertificate=No;certificateStoreLocation=CurrentUser;certificateStoreName=My;PaginationType=None;allowResponseHeaders=false;allowHttpsOnly=false;XUserId=EWIHRcB;XPassword=TMIPfVA" target="_blank"&gt;https://jsonplaceholder.typicode.com/posts;timeout=30;method=GET;sendExpect100Continue=True;autoDetectResponseType=true;checkResponseTypeOnTestConnection=true;keyGenerationStrategy=0;authSchema=anonymous;skipServerCertificateValidation=false;useCertificate=No;certificateStoreLocation=CurrentUser;certificateStoreName=My;PaginationType=None;allowResponseHeaders=false;allowHttpsOnly=false;XUserId=EWIHRcB;XPassword=TMIPfVA&lt;/A&gt;;";&lt;BR /&gt;&lt;BR /&gt;RestConnectorMasterTable:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"userId",&lt;BR /&gt;"id",&lt;BR /&gt;"title",&lt;BR /&gt;"body"&lt;BR /&gt;FROM JSON (wrap on) "root";&lt;BR /&gt;&lt;BR /&gt;[root]:&lt;BR /&gt;LOAD [userId],&lt;BR /&gt;[id],&lt;BR /&gt;[title],&lt;BR /&gt;[body]&lt;BR /&gt;RESIDENT RestConnectorMasterTable;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;DROP TABLE RestConnectorMasterTable;&lt;BR /&gt;&lt;BR /&gt;Which loads the data from :&lt;BR /&gt;&lt;A href="https://jsonplaceholder.typicode.com/posts" target="_blank"&gt;https://jsonplaceholder.typicode.com/posts&lt;/A&gt;</description>
      <pubDate>Fri, 17 May 2019 19:48:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-connect-to-qlik-sense-data-using-REST-API/m-p/1581717#M10574</guid>
      <dc:creator>felipedl</dc:creator>
      <dc:date>2019-05-17T19:48:50Z</dc:date>
    </item>
  </channel>
</rss>

