Book Image

Mastering Qlik Sense

By : Juan Ignacio Vitantonio
Book Image

Mastering Qlik Sense

By: Juan Ignacio Vitantonio

Overview of this book

Qlik Sense is a powerful, self-servicing Business Intelligence tool for data discovery, analytics and visualization. It allows you to create personalized Business Intelligence solutions from raw data and get actionable insights from it. This book is your one-stop guide to mastering Qlik Sense, catering to all your organizational BI needs. You'll see how you can seamlessly navigate through tons of data from multiple sources and take advantage of the various APIs available in Qlik and its components for guided analytics. You'll also learn how to embed visualizations into your existing BI solutions and extend the capabilities of Qlik Sense to create new visualizations and dashboards that work across all platforms. We also cover other advanced concepts such as porting your Qlik View applications to Qlik Sense,and working with Qlik Cloud. Finally, you'll implement enterprise-wide security and access control for resources and data sources through practical examples. With the knowledge gained from this book, you'll have become the go-to expert in your organization when it comes to designing BI solutions using Qlik Sense.
Table of Contents (16 chapters)

Engine API

The Qlik Engine API is a WebSocket protocol that uses JSON to pass information between the Qlik Sense Engine and the clients. To explain this sentence a bit further, a WebSocket is a both-ways communication protocol that allows the Qlik Engine API to communicate with the web browser of a user. The communication is both ways (full-duplex), which means that the user can, for example, pass a selection to the Qlik Engine API but also the Qlik Sense Engine can push updated data to the user's browser, without the user having to accept or do anything.

The format in which the WebSocket communicates is JSON, which stands for JavaScript Object Notation. It's a data structure in a string format following a specific syntax using brackets, colons, and double quotes, which can easily be interpreted by JavaScript. JSON is characterized and defined using the following set...