<?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: Using a Session Cookie with Repository API in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180945#M5847</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.qlik.com/qlik-users/228898"&gt;elva.lester&lt;/A&gt;‌, &lt;A href="https://community.qlik.com/qlik-users/222831"&gt;grangerats&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a similar requirement to get the active SMSESSION cookie for an application in Access Point. Once I can capture that, I have to pass the same as one of the header and x-api-key as another to call the URL (HTTP request).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Any suggestion here how to capture that SMSESSION cookie (or all cookie of that page) using VBScript or JScript in Qlik?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Apr 2017 15:51:26 GMT</pubDate>
    <dc:creator>dmohanty</dc:creator>
    <dc:date>2017-04-27T15:51:26Z</dc:date>
    <item>
      <title>Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180940#M5842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a .NET MVC web application that requires SSL.&amp;nbsp; I am able to successfully access the Proxy Service to obtain a session ID and store it in my forms authentication cookie to allow for single sign-on.&amp;nbsp; I am able to display a specific app or sheet within an iframe by simply specifying the URL.&amp;nbsp; Instead of hard-coding the GUIDs for the apps and sheets, I would like to use the Repository Service to get a list of available apps and sheets.&amp;nbsp; Whenever I call qrs/virtualproxy/app/hublist, I get the html for the login screen returned.&amp;nbsp; I have tried adding various headers, but can't seem to find the right combination.&amp;nbsp; Here's my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;TABLE jive-data-header="{&amp;quot;color&amp;quot;:&amp;quot;#FFFFFF&amp;quot;,&amp;quot;backgroundColor&amp;quot;:&amp;quot;#6690BC&amp;quot;,&amp;quot;textAlign&amp;quot;:&amp;quot;center&amp;quot;,&amp;quot;padding&amp;quot;:&amp;quot;2&amp;quot;}"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;public string GetAppList(string method, string server, string virtualProxy, string user, string userdirectory, HttpCookie session)&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;{&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;string url = server + "/qrs/" + virtualProxy + "/app/hublist";&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;//Create the HTTP Request and add required headers and content in Xrfkey&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;string Xrfkey = "0123456789abcdef";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url + "?Xrfkey=" + Xrfkey);&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;request.Method = method;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;request.Accept = "application/json";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;request.ContentType = "application/json";&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;request.Headers.Add("X-Qlik-Xrfkey", Xrfkey);&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;request.Headers.Add("X-Qlik-User", "UserDirectory=" + userdirectory + ";UserId=" + user);&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;request.Headers.Add("X-Qlik-Virtual-Proxy-Prefix", virtualProxy);&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;// make the web request and return the content&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;HttpWebResponse response = (HttpWebResponse)request.GetResponse();&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;Stream stream = response.GetResponseStream();&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;return stream != null ? new StreamReader(stream).ReadToEnd() : string.Empty;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;/TD&gt;
&lt;TD&gt;}&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically, I want the call to work like the .NET SDK command location.AsExistingSessionViaProxy(sessionCookie.Value, sessionCookie.Name).&amp;nbsp; Is this possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Sep 2016 21:26:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180940#M5842</guid>
      <dc:creator>elva_lester</dc:creator>
      <dc:date>2016-09-23T21:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180941#M5843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Elva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes this should be possible. You have to extract the cookie out of the response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye Konrad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 14:00:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180941#M5843</guid>
      <dc:creator>konrad_mattheis</dc:creator>
      <dc:date>2016-09-26T14:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180942#M5844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I am able to extract the cookie, but I cannot get the qrs request to use it.&amp;nbsp; I tried &lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt;request.Headers.Add(&lt;/SPAN&gt;&lt;SPAN style="color: #a31515; font-size: 10pt; font-family: Consolas;"&gt;"X-Qlik-SessionId"&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; font-family: Consolas;"&gt;, session.Value);&lt;/SPAN&gt;&amp;nbsp; where the variable session is the cookie.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 14:52:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180942#M5844</guid>
      <dc:creator>elva_lester</dc:creator>
      <dc:date>2016-09-26T14:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180943#M5845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp; If you're trying to get to the QRS Api via a Virtual Proxy, you appear to be using the wrong path. It should be &lt;STRONG&gt;/{virtual-proxy-prefix}/qrs/...&lt;/STRONG&gt;&amp;nbsp; E.g. /virtualproxy/qrs/app&amp;nbsp;&amp;nbsp; or&amp;nbsp;&amp;nbsp;&amp;nbsp; /virtualproxy/qrs/app/full&amp;nbsp;&amp;nbsp; or&amp;nbsp;&amp;nbsp; /virtualproxy/qrs/about/api/description&amp;nbsp;&amp;nbsp; With that, you can use whatever AuthC your Virtual Proxy is setup to use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Sep 2016 19:19:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180943#M5845</guid>
      <dc:creator>grangerats</dc:creator>
      <dc:date>2016-09-26T19:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180944#M5846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you.&amp;nbsp; That definitely was part of my problem.&amp;nbsp; The other thing I needed to do was to add the Session cookie to the request as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;request.CookieContainer = new CookieContainer();&lt;/P&gt;&lt;P&gt;request.CookieContainer.Add(new Uri(server), new Cookie(session.Name, session.Value));&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Sep 2016 19:18:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180944#M5846</guid>
      <dc:creator>elva_lester</dc:creator>
      <dc:date>2016-09-27T19:18:17Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180945#M5847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.qlik.com/qlik-users/228898"&gt;elva.lester&lt;/A&gt;‌, &lt;A href="https://community.qlik.com/qlik-users/222831"&gt;grangerats&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a similar requirement to get the active SMSESSION cookie for an application in Access Point. Once I can capture that, I have to pass the same as one of the header and x-api-key as another to call the URL (HTTP request).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Any suggestion here how to capture that SMSESSION cookie (or all cookie of that page) using VBScript or JScript in Qlik?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Apr 2017 15:51:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180945#M5847</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2017-04-27T15:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180946#M5848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Hi &lt;/SPAN&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-link-profile-small" data-containerid="-1" data-containertype="-1" data-objectid="228898" data-objecttype="3" href="https://community.qlik.com/people/elva.lester" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3778c7;"&gt;elva.lester&lt;/A&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;, &lt;/SPAN&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-link-profile-small" data-containerid="-1" data-containertype="-1" data-objectid="222831" data-objecttype="3" href="https://community.qlik.com/people/grangerats" style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3778c7;"&gt;grangerats&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Any possible help on my request please?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Regards!&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 May 2017 14:55:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180946#M5848</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2017-05-01T14:55:44Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180947#M5849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not enough information, and what's there appears to be jumping between many different products. Sounds like only a small portion of it has anything to do with Qlik Sense. And, finally, it sounds like a completely new topic; ask a new question (not on this question) and supply more detail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 May 2017 18:51:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180947#M5849</guid>
      <dc:creator>grangerats</dc:creator>
      <dc:date>2017-05-01T18:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180948#M5850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/222831"&gt;grangerats&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for suggestion &lt;/P&gt;&lt;P&gt;I have a thread already created here - &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/1256709"&gt;Generate a user specific SMSESSION cookie calling a WebService&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To simplify more - &lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Fetch the SMSESSION cookie from the login browser (may be using a Macro). Store in variable or notepad.&lt;/LI&gt;&lt;LI&gt;Use this SMSESSION as one of the header input and X-API-KEY as another input to call the URL (HTTP Request)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Calibri, Arial, Helvetica, sans-serif, serif, EmojiFont; font-size: 16px;"&gt;&lt;SPAN&gt;GET &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://iri1lvu09j.execute-api.us-east-1.amazonaws.com/oe_stage/api/v1/token-generator/generate?user=" rel="nofollow" target="_blank"&gt;https://iri1lvu09j.execute-api.us-east-1.amazonaws.com/oe_stage/api/v1/token-generator/generate?user=&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Calibri, Arial, Helvetica, sans-serif, serif, EmojiFont; font-size: 16px; background-color: yellow;"&gt;user’s login id&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Create the Cart by calling the URL – &lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;POST &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://dzrsa753r1.execute-api.us-east-1.amazonaws.com/oe_stage/pd/ecom/v1/carts" rel="nofollow" target="_blank"&gt;https://dzrsa753r1.execute-api.us-east-1.amazonaws.com/oe_stage/pd/ecom/v1/carts&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Here are the inputs – &lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; Authorization – JWT Token&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; X-API-KEY - Qlik API Key&lt;/LI&gt;&lt;/UL&gt;&lt;P style="color: #000000; font-family: Calibri, Arial, Helvetica, sans-serif, serif, EmojiFont; font-size: 16px; text-indent: 36pt;"&gt;&lt;SPAN style="font-size: 16px;"&gt;Content-Type: application/json&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: Calibri, Arial, Helvetica, sans-serif, serif, EmojiFont; font-size: 16px; text-indent: 36pt;"&gt;&lt;SPAN style="font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: Calibri, Arial, Helvetica, sans-serif, serif, EmojiFont; font-size: 16px; text-indent: 36pt;"&gt;&lt;SPAN style="font-size: 16px;"&gt;User – User’s Log in id&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: Calibri, Arial, Helvetica, sans-serif, serif, EmojiFont; font-size: 16px; margin: 2pt 0 2pt 36pt;"&gt;&lt;SPAN style="font-size: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #000000; font-family: Calibri, Arial, Helvetica, sans-serif, serif, EmojiFont; font-size: 16px; margin: 2pt 0 2pt 36pt;"&gt;&lt;SPAN style="font-size: 16px;"&gt;UUID -&amp;nbsp; cb6d61da-1eb4-4827-bc32-fb2a71f15f8b (It is just a unique transaction tracking identifier.&amp;nbsp; We can use whatever you want to generate it and can be any format.&amp;nbsp; It will be part of the API logs we can find it in Splunk. It should be unique per request.&amp;nbsp; It will accept the same one on multiple calls and does not do duplicate checking.)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 May 2017 19:19:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180948#M5850</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2017-05-01T19:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180949#M5851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@&lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/elva.lester"&gt;elva.lester&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just wondering. .why dont you use the SDK for extracting all the apps and sheets indeed of adding de API solution?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 May 2017 23:07:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180949#M5851</guid>
      <dc:creator>amien</dc:creator>
      <dc:date>2017-05-01T23:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180950#M5852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/2408"&gt;amien&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please throw some more light on your suggested approach please? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2017 12:46:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180950#M5852</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2017-05-02T12:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180951#M5853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I could not use the SDK because the does not expose all of the properties we needed.&amp;nbsp; See &lt;A href="https://community.qlik.com/message/1129118"&gt;.NET SDK app properties&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2017 13:00:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180951#M5853</guid>
      <dc:creator>elva_lester</dc:creator>
      <dc:date>2017-05-02T13:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180952#M5854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I do not have any experience with SMSESSION.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2017 13:02:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180952#M5854</guid>
      <dc:creator>elva_lester</dc:creator>
      <dc:date>2017-05-02T13:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180953#M5855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/228898"&gt;elva.lester&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Elva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U had mentioned you were able to extract the SMSESSION. Could you please help me on how did you do this in QlikView?&amp;nbsp; You used any macro codes for this?&lt;/P&gt;&lt;P&gt;Also after fetching the SMSESSION, what is the approach to use it as a Header in calling a Web Service?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2017 14:22:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180953#M5855</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2017-05-02T14:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180954#M5856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, Dicky.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did not extract SMSESSION.&amp;nbsp; I did extract all of the session cookies for Qlik Sense in my MVC .NET code as documented above.&amp;nbsp; I have never used SMSESSION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Elva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2017 14:26:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180954#M5856</guid>
      <dc:creator>elva_lester</dc:creator>
      <dc:date>2017-05-02T14:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180955#M5857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/228898"&gt;elva.lester&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not a problem Elva. Thanks for suggesting,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any other suggestions just to kick off my requirement in QlikView?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not SMSESSION, any help on how to pass the X-API-KEY as a header to call the URL (HTTP Request)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2017 14:36:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180955#M5857</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2017-05-02T14:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180956#M5858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The one thing I would try would be something like:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;request.Headers.Add("X-Qlik-Xrfkey", Xrfkey);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;where you substitute the literal X-API-KEY for the first parm (enclosed in quotes) and the value as the second parm.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Good luck!&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2017 15:21:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180956#M5858</guid>
      <dc:creator>elva_lester</dc:creator>
      <dc:date>2017-05-02T15:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: Using a Session Cookie with Repository API</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180957#M5859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.qlik.com/qlik-users/228898"&gt;elva.lester&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a bit novice here. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Could you please help a more on how to use the script if I have the URL to pass the header into? &lt;SPAN style="font-size: 10pt;"&gt;Something like, once called from a button click, where can I validate the results too. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;I have also created a separate thread for this, if you want to help out there - &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;A href="https://community.qlik.com/message/1256709"&gt;Generate a user specific SMSESSION cookie calling a WebService&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 May 2017 19:16:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/Using-a-Session-Cookie-with-Repository-API/m-p/1180957#M5859</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2017-05-02T19:16:12Z</dc:date>
    </item>
  </channel>
</rss>

