Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
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