Microsoft の Cognitive サービスから Text Analysis API をテストして評価しようとしています。Invoke-RestMethod を使用して、迅速で汚い PowerShell スクリプトを機能させようとしています。いくつかの調整の後、まだ 400 エラーが返されます。JSON が修正されているように見え、入力した API キーが正しいように見えるため、何が問題なのかわかりません。追加のヘッダーの使用について別の人のブログで見つけたものを利用し、いくつかのバリエーションを試しましたが、まだダイスはありません. 誰か私たちのためにサニティチェックをしてくれませんか?
#html tag stripper function
function htmlStrip ($results)
{
#using .NET toString method to ensure PS doesn't interpret same var incorrectly
$results = $results.toString()
$results -replace '<[^>]*(>|$)'
}
Try
{
[string]$sourceUrl = Read-Host "Enter a URL such as https://foobar.com"
}
Catch
{
Write-Host "URL requires http:// or https:// prefix e.g. https://cnn.com"
}
$webClient = New-Object Net.WebClient
[string]$results = $webClient.DownloadString($sourceUrl)
[string]$cleanResults = htmlStrip $results
$body =
[ordered]@{"documents" =
@{ "language" = "en"; "id" = $sourceUrl; "text" = $cleanResults }
}
#>
$body = [ordered]@{
"documents" =
@(
@{ "language" = "en"; "id" = $sourceUrl; "text" = $cleanResults }
)
}
$jsonBody = $body | ConvertTo-Json
#Begin Text Analytics API Call with Invoke-RestMethod wrapper
#[string]$apiUrl = "https://westus.api.cognitive.microsoft.com/text/analytics/v2.0/keyPhrases"
[string]$apiKey = "REDACTED"
$headers = @{ "Ocp-Apim-Subscription-Key" = $apiKey }
$analyticsResults = Invoke-RestMethod -Method Post -Uri $apiUrl -Headers $headers -Body $jsonBody -ContentType "application/json" -ErrorAction Stop
Write-Host $analyticsResults
Write-Host $jsonBody