Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
JoelStransky
Contributor III
Contributor III

Can you use `npx nebula serve` with Qlik Sense Desktop?

I'm getting `Failed to fetch csrf-token TypeError: Failed to fetch` because it provides no discernible config that has any affect on its ability to include the port when accessing the host.
${host} will always be "https://localhost"

// getCsrfToken.js
export default async function getCsrfToken(host) {
try {
const res = await fetch(`${host}/qps/csrftoken`, { credentials: 'include' });
const token = res.headers.get('QLIK-CSRF-TOKEN');
if (token) {
return token;
}
return '';
} catch (err) {
console.log('Failed to fetch csrf-token', err);
}
return '';
}


I've tried various flag and nebula.config.js like this

"start": "nebula serve --type serve --enigma.host localhost --enigma.port 4848"
Labels (1)
0 Replies