<?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 use qlik-embed in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-use-qlik-embed/m-p/2474028#M21028</link>
    <description>&lt;P&gt;You may find more information here&amp;nbsp;&lt;A href="https://qlik.dev/examples/#qlik-embed" target="_blank"&gt;Qlik Cloud Code Examples | Qlik Developer Portal&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 31 Jul 2024 17:17:47 GMT</pubDate>
    <dc:creator>Clever_Anjos</dc:creator>
    <dc:date>2024-07-31T17:17:47Z</dc:date>
    <item>
      <title>How to use qlik-embed</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-use-qlik-embed/m-p/2473998#M21027</link>
      <description>&lt;P&gt;Hello, I am trying to use qlik-embed but I can't find any example on how to use it with Cookie authentication.&lt;BR /&gt;&lt;BR /&gt;I have an Angular 17+ application that is using Capabilities API (via require.js) that works against a self-hosted QlikSense server. There's a backend that authenticates against QlikSense and then returns the auth cookie which is used from the Angular app. In the scenario of qlik-embed I don't find any clue on how to proceed. Do you have any doc to follow? thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 06:46:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-use-qlik-embed/m-p/2473998#M21027</guid>
      <dc:creator>amj</dc:creator>
      <dc:date>2024-08-01T06:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to use qlik-embed</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-use-qlik-embed/m-p/2474028#M21028</link>
      <description>&lt;P&gt;You may find more information here&amp;nbsp;&lt;A href="https://qlik.dev/examples/#qlik-embed" target="_blank"&gt;Qlik Cloud Code Examples | Qlik Developer Portal&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 17:17:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-use-qlik-embed/m-p/2474028#M21028</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2024-07-31T17:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to use qlik-embed</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-use-qlik-embed/m-p/2474029#M21029</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/245721"&gt;@amj&lt;/a&gt;&amp;nbsp;, are you attempting to perform the auth against client-managed? Keep in mind qlik-embed support was introduced to client-managed with May 2024 release.&lt;/P&gt;
&lt;P&gt;As for cookie auth, the constructor for client-managed is shown here:&amp;nbsp;&lt;A href="https://qlik.dev/embed/qlik-embed/authenticate/connect-qlik-embed/#connecting-to-qlik-sense-enterprise-client-managed" target="_blank"&gt;https://qlik.dev/embed/qlik-embed/authenticate/connect-qlik-embed/#connecting-to-qlik-sense-enterprise-client-managed&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;however, your mileage may vary depending on your virtual proxy / proxy configuration.&lt;BR /&gt;&lt;BR /&gt;If you are on Qlik Cloud, I strongly suggest using OAuth2 single-page application. Yes it changes the auth profile a bit, but it's far easier to maintain and removes cookies from the equation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CHeers,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeff G&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 17:24:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-use-qlik-embed/m-p/2474029#M21029</guid>
      <dc:creator>Jeffrey_Goldberg</dc:creator>
      <dc:date>2024-07-31T17:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to use qlik-embed</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-use-qlik-embed/m-p/2474112#M21033</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/22569"&gt;@Clever_Anjos&lt;/a&gt;&amp;nbsp;and &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/45015"&gt;@Jeffrey_Goldberg&lt;/a&gt;&amp;nbsp;, thanks for your answer. It is working after giving it a second try and fine-tuning the config, I needed to set the VP as well for data-host and properly configure&amp;nbsp;Access-Control-Allow-Origin and&lt;BR /&gt;Access-Control-Allow-Credentials headers.&lt;BR /&gt;&lt;BR /&gt;A question I have is that in our current solution (a mashup within an Angular app), a backend is doing the auth against QlikSense for us and then we are using a proxy to handle HTTPS &amp;amp; WSS traffic to QlikSense, by doing that we can keep our server privately and not exposing more than would be needed. The qlik-embed way of working needs data-host and data-login-uri to directly hit QlikSense server, is there any way of better protecting it?&lt;BR /&gt;&lt;BR /&gt;Another topic I think of is about the WSS connection closing, right now with capabilities API we are able to decide when to close socket connection (quite useful for a mashup that allows opening and closing multiple apps), what would be the options to handle that with qlik-embed?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance for your help!&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 09:56:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-use-qlik-embed/m-p/2474112#M21033</guid>
      <dc:creator>amj</dc:creator>
      <dc:date>2024-08-01T09:56:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to use qlik-embed</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-use-qlik-embed/m-p/2474346#M21044</link>
      <description>&lt;P&gt;Another question would be about event handling, right now with capabilities API we are able to catch certain events like timeouts, how that could be handled now with qlik-embed?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 13:12:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-use-qlik-embed/m-p/2474346#M21044</guid>
      <dc:creator>amj</dc:creator>
      <dc:date>2024-08-02T13:12:34Z</dc:date>
    </item>
  </channel>
</rss>

