<?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>article QRS API using Xrfkey header in Postman Chrome Extension in Official Support Articles</title>
    <link>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-using-Xrfkey-header-in-Postman-Chrome-Extension/ta-p/1714661</link>
    <description>&lt;P&gt;&lt;BR /&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2F-se9QCC7F-E%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D-se9QCC7F-E&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2F-se9QCC7F-E%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="200" height="112" scrolling="no" title="Qlik Fix: Using PostMan to Querry QRS" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture;" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Qlik Sense Repository Service API (QRS API)&lt;/STRONG&gt; contains all data and configuration information for a Qlik Sense site. The data is normally added and updated using the Qlik Management Console (QMC) or a Qlik Sense client, but it is also possible to communicate directly with the QRS using its API. This enables the automation of a range of tasks, for example:&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;Start tasks from an external scheduling tool&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Change license configurations&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Extract data about the system&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Using Xrfkey header&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;A common vulnerability in web clients is cross-site request forgery, which lets an attacker impersonate a user when accessing a system. Thus we use the Xrfkey to prevent that, without Xrfkey being set in the URL the server will send back a message saying: XSRF prevention check failed. Possible XSRF discovered.&amp;nbsp;Some users like to use Postman for API calls and testing purposes, for more details on this see &lt;A href="https://www.getpostman.com/docs/" target="_blank" rel="noopener"&gt;https://www.getpostman.com/docs/&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="qlik-migrated-tkb-headings"&gt;Resolution:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This procedure has been tested with Qlik Sense 2.x and Qlik Sense 3.x.&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;Install &lt;I&gt;Postman &lt;STRONG&gt;Chrome Extension&lt;/STRONG&gt;&lt;/I&gt;, you can get it from the &lt;A href="https://chrome.google.com/webstore/category/extensions" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;Chrome Web Store&lt;/STRONG&gt;&lt;/A&gt;&amp;nbsp;(&lt;STRONG&gt;&lt;SPAN&gt;Do &lt;U&gt;NOT&lt;/U&gt; use the Desktop version of Postman for this procedure! &lt;/SPAN&gt;&lt;/STRONG&gt;See&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Support-Knowledge-Base/How-to-configure-Postman-desktop-app-to-connect-to-Qlik-Sense/ta-p/1711499" target="_blank" rel="noopener"&gt;How to configure Postman (desktop app) to connect to Qlik Sense&lt;/A&gt;&amp;nbsp;for information on how to do this with the Desktop Application)&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Make sure the Qlik Repository service is up and running and port 4242 is open on the target server&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Method 1: Authenticating through Qlik Proxy Service&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN&gt;In Postman click on the interceptor icon and let the extension install itself if needed. This is needed to pass authentication credentials from Chrome to Postman.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Open the hub or the QMC in Chrome and authenticate to Qlik Sense.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Go to Postman and in the URL section type &lt;A href="https://&amp;lt;machine" target="test_blank"&gt;https://&amp;lt;machine&lt;/A&gt; hostname&amp;gt;/qrs/About?Xrfkey=12345678qwertyui&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;In this example we are sending a GET request with a header of Xrfkey=12345678qwertyui and we are addressing the endpoint of /about. For more details on all end points, please refer to &lt;A href="https://help.qlik.com/en-US/sense-developer/3.0/Subsystems/RepositoryServiceAPI/Content/RepositoryServiceAPI/RepositoryServiceAPI-Connect-API.htm" target="_blank" rel="noopener"&gt;https://help.qlik.com/en-US/sense-developer/3.0/Subsystems/RepositoryServiceAPI/Content/RepositoryServiceAPI/RepositoryServiceAPI-Connect-API.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P data-unlink="true"&gt;&lt;SPAN&gt;In summary a typical QRS API call using Xrfkey &lt;U&gt;header&lt;/U&gt;, querying QMC at the end point of “/about” will look like this in Postman browser (given that the host machine name is qlikserver1):&lt;BR /&gt;&lt;BR /&gt;https://qlikserver1/qrs/about?xrfkey=12345678qwertyui&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;A possible response may look like this:&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;{"buildVersion":"2.2.4.0","buildDate":"9/20/2013 10:09:00 AM","databaseProvider":"Devart.Data.PostgreSql","nodeType":1,"schemaPath":"About"}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;IMG src="https://qlik.my.salesforce.com/servlet/servlet.ImageServer?id=015D0000003sAn7&amp;amp;oid=00D20000000IGPX&amp;amp;lastMod=1491915904000" border="0" alt="User-added image" width="800" /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;&lt;STRONG&gt;Method 2: &amp;nbsp;Use certificate and send direct request to Repository API&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN&gt;Open Qlik Management Console and export the certificate. Please refer to&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Support-Knowledge-Base/Export-client-certificate-and-root-certificate-to-make-API-calls/ta-p/1715515?_ga=2.195918504.589044094.1595225505-982966571.1570110801&amp;amp;_gac=1.249753266.1592315761.EAIaIQobChMIq-j7sr6G6gIVEZSyCh1scAZeEAAYAiAAEgKiLPD_BwE" target="_blank" rel="noopener"&gt;Export client certificate and root certificate to make API calls&lt;/A&gt;&amp;nbsp;for procedure.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Make sure that port 4242 is open between the machine making the API call and the Qlik Sense server.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Import the certificate on the machine you will use to make API calls. This must be imported in the personal certificate store of your user in MMC.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Go to Postman and in the URL section type &lt;A href="https://&amp;lt;machine" target="test_blank"&gt;https://&amp;lt;machine&lt;/A&gt; FQDN&amp;gt;:4242/qrs/About?Xrfkey=iX83QmNlvu87yyAB&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;In Postman, specify the following headers: X-Qlik-Xrfkey, X-Qlik-User&amp;nbsp; as on the screenshot below:&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;IMG src="https://qlik.my.salesforce.com/servlet/servlet.ImageServer?id=015D0000003sAnC&amp;amp;oid=00D20000000IGPX&amp;amp;lastMod=1491915931000" border="0" alt="User-added image" width="650" /&gt;&lt;BR /&gt;&lt;BR /&gt;Execute the command.&lt;BR /&gt;&lt;BR /&gt;A possible response may look like this:&lt;BR /&gt;&lt;SPAN&gt;{"buildVersion":"2.2.4.0","buildDate":"9/20/2013 10:09:00 AM","databaseProvider":"Devart.Data.PostgreSql","nodeType":1,"schemaPath":"About"}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
    <pubDate>Tue, 23 Feb 2021 09:36:40 GMT</pubDate>
    <dc:creator>Sonja_Bauernfeind</dc:creator>
    <dc:date>2021-02-23T09:36:40Z</dc:date>
    <item>
      <title>QRS API using Xrfkey header in Postman Chrome Extension</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-using-Xrfkey-header-in-Postman-Chrome-Extension/ta-p/1714661</link>
      <description>&lt;P&gt;&lt;BR /&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2F-se9QCC7F-E%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3D-se9QCC7F-E&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2F-se9QCC7F-E%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="200" height="112" scrolling="no" title="Qlik Fix: Using PostMan to Querry QRS" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture;" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;STRONG&gt;Qlik Sense Repository Service API (QRS API)&lt;/STRONG&gt; contains all data and configuration information for a Qlik Sense site. The data is normally added and updated using the Qlik Management Console (QMC) or a Qlik Sense client, but it is also possible to communicate directly with the QRS using its API. This enables the automation of a range of tasks, for example:&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;Start tasks from an external scheduling tool&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Change license configurations&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Extract data about the system&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Using Xrfkey header&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;A common vulnerability in web clients is cross-site request forgery, which lets an attacker impersonate a user when accessing a system. Thus we use the Xrfkey to prevent that, without Xrfkey being set in the URL the server will send back a message saying: XSRF prevention check failed. Possible XSRF discovered.&amp;nbsp;Some users like to use Postman for API calls and testing purposes, for more details on this see &lt;A href="https://www.getpostman.com/docs/" target="_blank" rel="noopener"&gt;https://www.getpostman.com/docs/&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="qlik-migrated-tkb-headings"&gt;Resolution:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This procedure has been tested with Qlik Sense 2.x and Qlik Sense 3.x.&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;Install &lt;I&gt;Postman &lt;STRONG&gt;Chrome Extension&lt;/STRONG&gt;&lt;/I&gt;, you can get it from the &lt;A href="https://chrome.google.com/webstore/category/extensions" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;Chrome Web Store&lt;/STRONG&gt;&lt;/A&gt;&amp;nbsp;(&lt;STRONG&gt;&lt;SPAN&gt;Do &lt;U&gt;NOT&lt;/U&gt; use the Desktop version of Postman for this procedure! &lt;/SPAN&gt;&lt;/STRONG&gt;See&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Support-Knowledge-Base/How-to-configure-Postman-desktop-app-to-connect-to-Qlik-Sense/ta-p/1711499" target="_blank" rel="noopener"&gt;How to configure Postman (desktop app) to connect to Qlik Sense&lt;/A&gt;&amp;nbsp;for information on how to do this with the Desktop Application)&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Make sure the Qlik Repository service is up and running and port 4242 is open on the target server&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Method 1: Authenticating through Qlik Proxy Service&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN&gt;In Postman click on the interceptor icon and let the extension install itself if needed. This is needed to pass authentication credentials from Chrome to Postman.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Open the hub or the QMC in Chrome and authenticate to Qlik Sense.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Go to Postman and in the URL section type &lt;A href="https://&amp;lt;machine" target="test_blank"&gt;https://&amp;lt;machine&lt;/A&gt; hostname&amp;gt;/qrs/About?Xrfkey=12345678qwertyui&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;In this example we are sending a GET request with a header of Xrfkey=12345678qwertyui and we are addressing the endpoint of /about. For more details on all end points, please refer to &lt;A href="https://help.qlik.com/en-US/sense-developer/3.0/Subsystems/RepositoryServiceAPI/Content/RepositoryServiceAPI/RepositoryServiceAPI-Connect-API.htm" target="_blank" rel="noopener"&gt;https://help.qlik.com/en-US/sense-developer/3.0/Subsystems/RepositoryServiceAPI/Content/RepositoryServiceAPI/RepositoryServiceAPI-Connect-API.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P data-unlink="true"&gt;&lt;SPAN&gt;In summary a typical QRS API call using Xrfkey &lt;U&gt;header&lt;/U&gt;, querying QMC at the end point of “/about” will look like this in Postman browser (given that the host machine name is qlikserver1):&lt;BR /&gt;&lt;BR /&gt;https://qlikserver1/qrs/about?xrfkey=12345678qwertyui&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;A possible response may look like this:&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;{"buildVersion":"2.2.4.0","buildDate":"9/20/2013 10:09:00 AM","databaseProvider":"Devart.Data.PostgreSql","nodeType":1,"schemaPath":"About"}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;IMG src="https://qlik.my.salesforce.com/servlet/servlet.ImageServer?id=015D0000003sAn7&amp;amp;oid=00D20000000IGPX&amp;amp;lastMod=1491915904000" border="0" alt="User-added image" width="800" /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;&lt;STRONG&gt;Method 2: &amp;nbsp;Use certificate and send direct request to Repository API&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN&gt;Open Qlik Management Console and export the certificate. Please refer to&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Support-Knowledge-Base/Export-client-certificate-and-root-certificate-to-make-API-calls/ta-p/1715515?_ga=2.195918504.589044094.1595225505-982966571.1570110801&amp;amp;_gac=1.249753266.1592315761.EAIaIQobChMIq-j7sr6G6gIVEZSyCh1scAZeEAAYAiAAEgKiLPD_BwE" target="_blank" rel="noopener"&gt;Export client certificate and root certificate to make API calls&lt;/A&gt;&amp;nbsp;for procedure.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Make sure that port 4242 is open between the machine making the API call and the Qlik Sense server.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Import the certificate on the machine you will use to make API calls. This must be imported in the personal certificate store of your user in MMC.&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;Go to Postman and in the URL section type &lt;A href="https://&amp;lt;machine" target="test_blank"&gt;https://&amp;lt;machine&lt;/A&gt; FQDN&amp;gt;:4242/qrs/About?Xrfkey=iX83QmNlvu87yyAB&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;In Postman, specify the following headers: X-Qlik-Xrfkey, X-Qlik-User&amp;nbsp; as on the screenshot below:&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;IMG src="https://qlik.my.salesforce.com/servlet/servlet.ImageServer?id=015D0000003sAnC&amp;amp;oid=00D20000000IGPX&amp;amp;lastMod=1491915931000" border="0" alt="User-added image" width="650" /&gt;&lt;BR /&gt;&lt;BR /&gt;Execute the command.&lt;BR /&gt;&lt;BR /&gt;A possible response may look like this:&lt;BR /&gt;&lt;SPAN&gt;{"buildVersion":"2.2.4.0","buildDate":"9/20/2013 10:09:00 AM","databaseProvider":"Devart.Data.PostgreSql","nodeType":1,"schemaPath":"About"}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Tue, 23 Feb 2021 09:36:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-using-Xrfkey-header-in-Postman-Chrome-Extension/ta-p/1714661</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2021-02-23T09:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: QRS API using Xrfkey header in Postman Chrome Extension</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-using-Xrfkey-header-in-Postman-Chrome-Extension/tac-p/1769555#M1320</link>
      <description>&lt;P&gt;Very Nice video, but if I corretly understand, this is to retrieve information about an app. Can I retrive a result of&amp;nbsp; an app?. Like send a Id from postman and receive a table from my app?&lt;/P&gt;</description>
      <pubDate>Fri, 18 Dec 2020 20:31:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-using-Xrfkey-header-in-Postman-Chrome-Extension/tac-p/1769555#M1320</guid>
      <dc:creator>eduardo_dimperio</dc:creator>
      <dc:date>2020-12-18T20:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: QRS API using Xrfkey header in Postman Chrome Extension</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-using-Xrfkey-header-in-Postman-Chrome-Extension/tac-p/1770136#M1350</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/21319"&gt;@eduardo_dimperio&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;
&lt;P&gt;I would recommend taking this question to the larger community over here:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-Integration-Extensions-APIs/bd-p/qlik-sense-integration-extension-api" target="_blank" rel="noopener"&gt;Qlik Sense Integration, Extensions, &amp;amp; APIs&lt;/A&gt;&amp;nbsp;- but I've checked if one of our integration experts can give your question a look as well (I did see you also commented on Damien's post).&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 09:04:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-using-Xrfkey-header-in-Postman-Chrome-Extension/tac-p/1770136#M1350</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2020-12-23T09:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: QRS API using Xrfkey header in Postman Chrome Extension</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-using-Xrfkey-header-in-Postman-Chrome-Extension/tac-p/1770218#M1357</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/28597"&gt;@Sonja_Bauernfeind&lt;/a&gt;&amp;nbsp; I already post on community without an answer, so I tried the Qlik Help, similar posts, videos on youtube&amp;nbsp; with no results, I start to&amp;nbsp; believe that's not possible, but very thanks for your time.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 13:23:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-using-Xrfkey-header-in-Postman-Chrome-Extension/tac-p/1770218#M1357</guid>
      <dc:creator>eduardo_dimperio</dc:creator>
      <dc:date>2020-12-23T13:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: QRS API using Xrfkey header in Postman Chrome Extension</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-using-Xrfkey-header-in-Postman-Chrome-Extension/tac-p/1892450#M5553</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am having this problem:&lt;/P&gt;
&lt;DIV class="pane-header horizontal response-pane__section-top"&gt;
&lt;DIV class="requester-contents-group__section-top response-viewer__section-top"&gt;
&lt;DIV class="response-viewer__meta"&gt;
&lt;DIV class="response-meta-viewer"&gt;
&lt;DIV class="response-meta-item is-tooltip-container response-meta-item__status"&gt;&lt;SPAN class="response-meta-item-value"&gt;&lt;SPAN class="response-meta-status-code"&gt;403&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="response-meta-status-code-desc"&gt;No client certificate supplied&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="response-meta-item is-tooltip-container response-meta-item__status"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="response-meta-item is-tooltip-container response-meta-item__status"&gt;&lt;SPAN class="response-meta-item-value"&gt;&lt;SPAN class="response-meta-status-code-desc"&gt;what can it depend on?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="response-meta-item is-tooltip-container response-meta-item__status"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="response-meta-item is-tooltip-container response-meta-item__status"&gt;&lt;SPAN class="response-meta-item-value"&gt;&lt;SPAN class="response-meta-status-code-desc"&gt;Thanks&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="pane-content response-pane__section-content"&gt;
&lt;DIV class="response-viewer"&gt;
&lt;DIV class="requester-contents-group"&gt;
&lt;DIV class="response-viewer-wrapper" data-execution-id="1090568f-e27f-4073-beb0-77a895083122"&gt;
&lt;DIV class="requester-contents-group__section-content"&gt;
&lt;DIV class="response-viewer__tab-contents"&gt;
&lt;DIV class="response-viewer-tab-contents"&gt;
&lt;DIV class="response-viewer-tab-content"&gt;
&lt;DIV class="response-body-text-viewer"&gt;
&lt;DIV class="text-editor"&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV class="dropdown text-editor__language-dropdown" tabindex="-1"&gt;
&lt;DIV class="dropdown-button"&gt;
&lt;DIV class="btn btn-secondary btn-small" tabindex="0"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Mon, 14 Feb 2022 10:02:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-using-Xrfkey-header-in-Postman-Chrome-Extension/tac-p/1892450#M5553</guid>
      <dc:creator>generalfinance</dc:creator>
      <dc:date>2022-02-14T10:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: QRS API using Xrfkey header in Postman Chrome Extension</title>
      <link>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-using-Xrfkey-header-in-Postman-Chrome-Extension/tac-p/1892928#M5564</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/32672"&gt;@generalfinance&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We recommend to follow the steps in this article:&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Knowledge/How-to-configure-Postman-desktop-app-to-connect-to-Qlik-Sense/ta-p/1711499" target="_self"&gt;How to configure Postman (desktop app) to connect to Qlik Sense&lt;/A&gt;&amp;nbsp;and make sure you are using the desktop version.&lt;/P&gt;
&lt;P&gt;The extension used in this article has been deprecated and I will be archiving this article shortly.&lt;/P&gt;
&lt;P&gt;All the best,&lt;BR /&gt;Sonja&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Feb 2022 09:11:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Official-Support-Articles/QRS-API-using-Xrfkey-header-in-Postman-Chrome-Extension/tac-p/1892928#M5564</guid>
      <dc:creator>Sonja_Bauernfeind</dc:creator>
      <dc:date>2022-02-15T09:11:09Z</dc:date>
    </item>
  </channel>
</rss>

