<?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 Qlik Sense  REST API connector in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-REST-API-connector/m-p/1755814#M8569</link>
    <description>&lt;P&gt;Hi, I'm trying to connect the Netsuite with oauth 1.0 via REST connector from Qlik Sense Cloud. I can successfully load the data via postman with oauth 1.0 and "Add parameters to header" option. I'm trying do the same in Qlik Sense with query Header parameters but with no success (error with "http protocol error 401 unauthorized: Requested resource required authentication" appeared). Does anybody know if this is possible and how to fix it, how to "turn on" an authorization and set the header parameters correctly?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Tue, 21 Dec 2021 14:01:50 GMT</pubDate>
    <dc:creator>SS3</dc:creator>
    <dc:date>2021-12-21T14:01:50Z</dc:date>
    <item>
      <title>Qlik Sense  REST API connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-REST-API-connector/m-p/1755814#M8569</link>
      <description>&lt;P&gt;Hi, I'm trying to connect the Netsuite with oauth 1.0 via REST connector from Qlik Sense Cloud. I can successfully load the data via postman with oauth 1.0 and "Add parameters to header" option. I'm trying do the same in Qlik Sense with query Header parameters but with no success (error with "http protocol error 401 unauthorized: Requested resource required authentication" appeared). Does anybody know if this is possible and how to fix it, how to "turn on" an authorization and set the header parameters correctly?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Dec 2021 14:01:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-REST-API-connector/m-p/1755814#M8569</guid>
      <dc:creator>SS3</dc:creator>
      <dc:date>2021-12-21T14:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense  REST API connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-REST-API-connector/m-p/1766434#M8570</link>
      <description>&lt;P&gt;I don't think Qliksense allows oauth&lt;/P&gt;</description>
      <pubDate>Fri, 04 Dec 2020 23:10:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-REST-API-connector/m-p/1766434#M8570</guid>
      <dc:creator>Quarry</dc:creator>
      <dc:date>2020-12-04T23:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense  REST API connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-REST-API-connector/m-p/1766438#M8571</link>
      <description>&lt;P&gt;Some authentication requires a multi-step process. &amp;nbsp;You can use WITH CONNECTION () and supply URL, Headers, Body, etc.....&lt;/P&gt;&lt;P&gt;Below is an example of capturing the cookie token from an NTLM authorization.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See also:&amp;nbsp;&lt;A href="https://www.oauth.com/oauth2-servers/device-flow/token-request/" target="_blank"&gt;https://www.oauth.com/oauth2-servers/device-flow/token-request/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Set vHost = '127.0.0.1';&lt;BR /&gt;Set vPort = '4993';&lt;/P&gt;&lt;P&gt;LIB CONNECT TO 'REST Login'; //Setup LIB to URL auth&lt;/P&gt;&lt;P&gt;//Perform a GET call to NPrinting NTLM login API RestConnectorMasterTable:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"Set-Cookie",&lt;BR /&gt;"__KEY__response_header"&lt;BR /&gt;FROM JSON "_response_header" PK "__KEY__response_header";&lt;BR /&gt;[_response_header]:&lt;BR /&gt;LOAD [Set-Cookie] AS [Set-Cookie]&lt;BR /&gt;RESIDENT RestConnectorMasterTable&lt;BR /&gt;WHERE NOT IsNull([__KEY__response_header]);&lt;BR /&gt;//Extracts session cookie from the API response&lt;BR /&gt;let vCookieRaw = Peek('Set-Cookie',0,'_response_header');&lt;BR /&gt;let vCookie = TextBetween('$(vCookieRaw)','Secure,','Path=/',2);&lt;BR /&gt;DROP TABLE RestConnectorMasterTable;&lt;/P&gt;&lt;P&gt;RestAppsMasterTable:&lt;BR /&gt;SQL SELECT&lt;BR /&gt;"__KEY_data"&lt;BR /&gt;, (SELECT&lt;BR /&gt;"id",&lt;BR /&gt;"name", "__FK_items"&lt;BR /&gt;FROM "items" FK "__FK_items")&lt;BR /&gt;FROM JSON (wrap off) "data" PK "__KEY_data"&lt;BR /&gt;WITH CONNECTION( URL "https://$(vHost):$(vPort)/api/v1/apps", HTTPHEADER "cookie" "$(vCookie)" );&lt;BR /&gt;[apps_items]:&lt;BR /&gt;LOAD [id] AS [apps_appId],&lt;BR /&gt;[name] AS [apps_appName]&lt;BR /&gt;RESIDENT RestAppsMasterTable&lt;BR /&gt;WHERE NOT IsNull([__FK_items]);&lt;/P&gt;&lt;P&gt;DROP TABLE RestAppsMasterTable;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Dec 2020 00:28:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-REST-API-connector/m-p/1766438#M8571</guid>
      <dc:creator>donovanredbeard</dc:creator>
      <dc:date>2020-12-05T00:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense  REST API connector</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-REST-API-connector/m-p/1766477#M8572</link>
      <description>&lt;P&gt;I've posted an example of OAuth with Jira to this thread, which may also help:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Connectors-Discussions/Qlik-Sense-Rest-API-Connector-for-Jira-Getting-custom-fields/m-p/1749299/highlight/true#M2456" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Connectors-Discussions/Qlik-Sense-Rest-API-Connector-for-Jira-Getting-custom-fields/m-p/1749299/highlight/true#M2456&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;</description>
      <pubDate>Sat, 05 Dec 2020 13:52:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlik-Sense-REST-API-connector/m-p/1766477#M8572</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2020-12-05T13:52:17Z</dc:date>
    </item>
  </channel>
</rss>

