<?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 get list of Streams using .NET SDK in Integration, Extension &amp; APIs</title>
    <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-list-of-Streams-using-NET-SDK/m-p/2020532#M17841</link>
    <description>&lt;P&gt;Hi guys, thanks for explanation and examples.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Above RestClient library works perfecly.. doing exactly what I needed !&lt;/P&gt;</description>
    <pubDate>Thu, 29 Dec 2022 08:08:36 GMT</pubDate>
    <dc:creator>pelda</dc:creator>
    <dc:date>2022-12-29T08:08:36Z</dc:date>
    <item>
      <title>How to get list of Streams using .NET SDK</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-list-of-Streams-using-NET-SDK/m-p/2018605#M17816</link>
      <description>&lt;P&gt;Hello everybody,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Am using .NET SDK and need to retrieve list of streams on particular location.&lt;/P&gt;
&lt;P&gt;For listing Apps I do use&amp;nbsp;location.GetAppIdentifiers&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there something similar for Streams?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;
&lt;P&gt;Jiri&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Dec 2022 15:37:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-list-of-Streams-using-NET-SDK/m-p/2018605#M17816</guid>
      <dc:creator>pelda</dc:creator>
      <dc:date>2022-12-20T15:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to get list of Streams using .NET SDK</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-list-of-Streams-using-NET-SDK/m-p/2018678#M17817</link>
      <description>Hello &lt;BR /&gt;&lt;BR /&gt;The links below should help. This is portion of another post in the coimmunity.&lt;BR /&gt;&lt;BR /&gt;That type of app metadata is typically the domain of the Repository, not the Engine. So the way to go is to use the Repository API. You probably want one of these endpoints:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://help.qlik.com/en-US/sense-developer/April2020/APIs/RepositoryServiceAPI/index.html?page=24" target="_blank"&gt;https://help.qlik.com/en-US/sense-developer/April2020/APIs/RepositoryServiceAPI/index.html?page=24&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://help.qlik.com/en-US/sense-developer/April2020/APIs/RepositoryServiceAPI/index.html?page=387" target="_blank"&gt;https://help.qlik.com/en-US/sense-developer/April2020/APIs/RepositoryServiceAPI/index.html?page=387&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you're accustomed to the .NET SDK, then you might find this library useful when calling the REST endpoints of the repository:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.nuget.org/packages/QlikSenseRestClient/" target="_blank"&gt;https://www.nuget.org/packages/QlikSenseRestClient/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It implements a similar location configuration protocol as the SDK. Some examples to get you going can be found here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/kolsrud/qlik_rest_sdk/tree/master/Qlik.Sense.RestClient/Examples" target="_blank"&gt;https://github.com/kolsrud/qlik_rest_sdk/tree/master/Qlik.Sense.RestClient/Examples&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Like this one for doing a basic NTLM connection:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/kolsrud/qlik_rest_sdk/blob/master/Qlik.Sense.RestClient/Examples/BasicConnection/" target="_blank"&gt;https://github.com/kolsrud/qlik_rest_sdk/blob/master/Qlik.Sense.RestClient/Examples/BasicConnection/&lt;/A&gt;...</description>
      <pubDate>Tue, 20 Dec 2022 20:00:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-list-of-Streams-using-NET-SDK/m-p/2018678#M17817</guid>
      <dc:creator>Ray_Strother</dc:creator>
      <dc:date>2022-12-20T20:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to get list of Streams using .NET SDK</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-list-of-Streams-using-NET-SDK/m-p/2018867#M17818</link>
      <description>&lt;P&gt;As &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/63754"&gt;@Ray_Strother&lt;/a&gt; points out, "Stream" is not a concept the engine knows anything about, and the .NET SDK can only be used to interact with the engine. For that type of information you need to call endpoints in the repository. Here's an example on how to get stream information using the library mentioned above for REST access:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;var client = new RestClient(url);
client.AsNtlmUserViaProxy(certificateValidation: false);

var streams = client.Get&amp;lt;JArray&amp;gt;("/qrs/stream");
Console.WriteLine(streams);&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 21 Dec 2022 09:09:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-list-of-Streams-using-NET-SDK/m-p/2018867#M17818</guid>
      <dc:creator>Øystein_Kolsrud</dc:creator>
      <dc:date>2022-12-21T09:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to get list of Streams using .NET SDK</title>
      <link>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-list-of-Streams-using-NET-SDK/m-p/2020532#M17841</link>
      <description>&lt;P&gt;Hi guys, thanks for explanation and examples.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Above RestClient library works perfecly.. doing exactly what I needed !&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 08:08:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Integration-Extension-APIs/How-to-get-list-of-Streams-using-NET-SDK/m-p/2020532#M17841</guid>
      <dc:creator>pelda</dc:creator>
      <dc:date>2022-12-29T08:08:36Z</dc:date>
    </item>
  </channel>
</rss>

