私は次のようにポストメソッドにパワークエリを書きました
let
url = "https://XXXXXXXXXX/OAuth/Token",
body = "{
""grant_type"": ""password"",
""client_id"": ""XXXXXXXX"",
""client_secret"": ""XXXXXXXXX"",
""redirect_uri"": ""https://XXXXXXX/home/"",
""username"": ""user"",
""password"": ""password""
}",
Source = Json.Document(Web.Contents(url,
[
Headers = [#"Content-Type"="application/x-www-form-urlencoded"],
Content=Text.ToBinary(body)
]
)
),
#"Converted to Table" = Record.ToTable(Source)
in
#"Converted to Table"
しかし、次のような400の不正なリクエストエラーが発生しています
DataSource.Error: Web.Contents failed to get contents from 'https://XXXXX/OAuth/Token' (400): Bad Request
Details:
DataSourceKind=Web
DataSourcePath=https://XXXXXXX/OAuth/Token
Url=https://XXXXXXXXXX/OAuth/Token
postman を使用しようとすると、 200 Ok status が表示されます。PQL コードの主なエラーは何ですか?