10 lines
349 B
PowerShell
10 lines
349 B
PowerShell
|
|
|
|
|
|
$head = @{"PRIVATE-TOKEN"="glpat-dQsUhS-GxNomkh1GnjHZ"}
|
|
$projectCount=1
|
|
#$callUrl = "https://gitlab.steamware.net/api/v4/projects/" + $projectCount + "/remote_mirrors"
|
|
$callUrl = "https://gitlab.steamware.net/"
|
|
$Response = Invoke-WebRequest -URI $callUrl -Headers $head -ContentType "application/json" -UseBasicParsing
|
|
Write-Output($Response)
|