Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Can anyone provide me instruction to see my qliksese server xrefkey?
Thanks in advance for your time.
Rangam
I guess xrefkey is used for header or proxy....
It is not pre defined in Qlik. You have to create your own matching xrefkey
I guess xrefkey is used for header or proxy....
It is not pre defined in Qlik. You have to create your own matching xrefkey
Thanks, then may I know why my script is not returning any value it is keep loading after running this.
$hdrs=@{}
$hdrs.Add("X-Qlik-xrefKey","ABCDEFG123456789")
$hdrs.Add("X-Qlik-User","UserDirectory=DESKTOP-A7R270Q;UserId=gis-11")
$cert=Get-ChildItem -Path "cert:\CurrentUser\My" | where {$_.Subject -like "*qlik*"}
$url="http://desktop-a7r270q:4747/qrs/app/about?xrefkey=ABCDEFG123456789"
Invoke-WebRequest -uri $url -Method get -Headers $hdrs -Certificate $cert