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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
rangam_s
Creator II
Creator II

API Request

Hi All,

I have come-up with below script, however it is keep loading but nit giving me any results.

Can you please let me know if anything is missing in my script.

Script:

function GetXrfKey() {

  $alphabet = $Null; For ($a=97;$a -le 122;$a++) { $alphabet += ,[char][byte]$a }

  For ($loop=1; $loop -le 16; $loop++) {

    $key += ($alphabet | Get-Random)

  }

  return $key

}

$xrfKey = GetXrfKey


$cert=Get-ChildItem -Path "cert:\CurrentUser\My" | where {$_.Subject -like "*QlikClient*"}

$url="http://127.0.0.1:4747/qrs/app/about?xrefkey=" + $xrfKey


$hrds=@{"x-qlik-xrfkey"=$xrfKey

"X-Qlik-User"='UserDirectory=DESKTOP-A7R270Q;UserId=GIS-11'}


Invoke-RestMethod -Method "get" -Uri $url -CertificateThumbprint $cert.Thumbprint -Headers $hrds

0 Replies