Private/InvokeApi.ps1
function InvokeApi { [OutputType('pscustomobject')] [CmdletBinding()] param ( [Parameter(Mandatory)] [ValidateNotNullOrEmpty()] [string]$Uri, [Parameter(Mandatory)] [ValidateNotNullOrEmpty()] [string]$Method, [Parameter()] [ValidateNotNullOrEmpty()] [string]$OutFile, [Parameter()] [ValidateNotNullOrEmpty()] [string]$Body, [Parameter()] [ValidateNotNullOrEmpty()] [string]$ContentType, [Parameter()] [ValidateNotNullOrEmpty()] [hashtable]$Headers ) $ErrorActionPreference = 'Stop' $config = GetConfiguration if (-not (Get-Variable -Name 'config' -Scope 'Script' -ErrorAction Ignore)) { throw "Configuration not found. Have you ran Connect-AzSpeechToText yet?" } if ($PSBoundParameters.ContainsKey('Headers')) { $Headers.Authorization = "Bearer $($script:config.Token)" } else { $Headers = @{ 'Authorization' = "Bearer $($script:config.Token)" } } try { $params = @{ Headers = $Headers Method = $Method Uri = $Uri } if ($PSBoundParameters.ContainsKey('Body')) { $params.Body = $Body } if ($PSBoundParameters.ContainsKey('ContentType')) { $params.ContentType = $ContentType } if ($PSBoundParameters.ContainsKey('OutFile')) { $params.OutFile = $OutFile } Invoke-RestMethod @params } catch { if ($_.Exception.Message -eq 'The remote server returned an error: (401) Unauthorized.') { RefreshCsToken $script:config.token } else { $PSCmdlet.ThrowTerminatingError($_) } } } |