GetApplist doesn't get the app in the Angular mashup in IIS
Hello All,
I wanted to select first app from the hub Getapplist, it works fine at Hub, but when I'm trying to do the same thing using vs code and run locally (in the IIS), It throws an error:
function getQlikApp() {
var appCode = [];
//Works fine in HUB / not in the IIS
qlik.getAppList(function(list) {
var str = [],
appID = str;
debugger;
console.log("configuration" +list);
list.forEach(function(value) {
str.push(value.qDocName);
appCode.push(value.qDocId);
});
});
//I've to speciy the AppId manually like this below it works