Listing available apps
This topic shows how to list all available Qlik Sense apps. The following example contains all the code you need to make a direct connection to the engine and list the apps. This example requires a client certificate.
Example: List all available apps
static void Main(string[] args) { // Loading certificates from store assumes that the user executing the program has access to the // Qlik certificates in the certificate store. var certs = CertificateManager.LoadCertificateFromStore(); var location = Location.FromUri("https://localhost"); location.AsDirectConnection("<domain>", "<user>", certs); // Gets the list of all apps through the Engine service. For more advanced usage and to leverage // filtering capabilities, it is recommended to use the Repository REST endpoints instead. foreach (var appIdentifier in location.GetAppIdentifiers()) { Console.WriteLine(appIdentifier.AppName); } }