Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Lisa_Sun
Support
Support

One more ? is added after hub.js when accessing Qlik Sense Hub

In the hub.html, by default, there is a ? in front of 1488463019165.  Whenever accessing Qlik Sense hub, this html will invoke hub.js and other few js files.  Somehow if we turn on the developer tool from the web browser, we can see there is one more ? added for these js files in the httpheader.

Is this one more ? added for the special purpose.  Please see the attached file.

<!doctype html>

<html lang="en">

<script src="../resources/hub/external/requirejs/require.js?1488463019165"></script>

<script>require.config( {baseUrl: "../resources", urlArgs: "?1488463019165"} )( ["hub/hub"] );</script>

</body>

</html>

One customer integrate their authentication server with our Qlik Sense.  The authentication server could not recognize this ?? after hub.js in the http header.  They found the workaround to delete this ? from hub.html as below.  Then it works. 

<!doctype html>

<html lang="en">

<script src="../resources/hub/external/requirejs/require.js?1488463019165"></script>

<script>require.config( {baseUrl: "../resources", urlArgs: "1488463019165"} )( ["hub/hub"] );</script>

</body>

</html>

Kind Regards

Lisa

Help users find answers! Don't forget to mark a solution that worked for you! If already marked, give it a thumbs up!
0 Replies