Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there a qrs api for the extraction of Qliksense Scripts? I am trying to extract all application scripts to text documents so that I can search over them using python to extract the from statements. This will allow me to isolate app dependencies to make schedule building easier.
Thanks,
Paul
To call engine endpoints you need to setup a websocket connection to the engine. The API is based on JSON-RPC and you can find some introduction to that here:
But typically people use predefined libraries for this access such as enigma for javascript or the .NET SDK for C#:
https://help.qlik.com/en-US/sense-developer/May2021/Subsystems/APIs/Content/Sense_ClientAPIs/enigmaj...
https://help.qlik.com/en-US/sense-developer/May2021/Subsystems/NetSDKAPI/Content/Sense_NetSDKAPI/Int...
A simple example for connecting using C# can be found here:
Do you mean the app load scripts? This you will have to get through the engine API:
https://help.qlik.com/en-US/sense-developer/May2021/APIs/EngineAPI/services-Doc-GetScript.html
I looked at that, the issue is that the documentation is so sparse, I haven't been able to get it working in practice. Do you have any examples of how one would put it into practice. Normal API documentation will give you the url structure for a web call, this documentation does not.
To call engine endpoints you need to setup a websocket connection to the engine. The API is based on JSON-RPC and you can find some introduction to that here:
But typically people use predefined libraries for this access such as enigma for javascript or the .NET SDK for C#:
https://help.qlik.com/en-US/sense-developer/May2021/Subsystems/APIs/Content/Sense_ClientAPIs/enigmaj...
https://help.qlik.com/en-US/sense-developer/May2021/Subsystems/NetSDKAPI/Content/Sense_NetSDKAPI/Int...
A simple example for connecting using C# can be found here:
Thanks, for others the package I will be using is websockets. This is a python package. I will be using NTLM to create the session authorization.