
Creator III
2024-07-10
09:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Socket closed
Hi I have this code:
import { auth, qix, users, items } from "@qlik/api";
process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0';
const appId = "XXXXXX";
(async () => {
auth.setDefaultHostConfig({
host: "XXXXXXXXXXXXXXXXXXx.eu.qlikcloud.com",
authType: "oauth2",
clientId: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
clientSecret: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
scope: "user_default admin.apps admin_classic",
});
const app = await qix.openAppSession(appId).getDoc();
const sheets = await app.getSheetList();
for(let sheet of sheets) {
console.log(sheet.qMeta.title, sheet.qMeta.privileges, `Current publish status is:${sheet.qMeta.published}`);
}
process.exit();
})();
and now getting this error:
return new EnigmaError(name, code, original);
^
EnigmaError: Socket closed
could someone give me some help what I did it wrong? I get this sample of Qlik dev portal
As you think, so shall you become.
1 Solution
Accepted Solutions

Creator III
2024-07-11
04:15 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Ok i find what was the issue
Someone Publish my Auth0 authentication and the user so i was not able to use anymore, when create a new user still the auth0 user created remains in the user in QMC , after delete the user, work.
As you think, so shall you become.
297 Views
1 Reply

Creator III
2024-07-11
04:15 AM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Ok i find what was the issue
Someone Publish my Auth0 authentication and the user so i was not able to use anymore, when create a new user still the auth0 user created remains in the user in QMC , after delete the user, work.
As you think, so shall you become.
298 Views
