简体   繁体   中英

How to read Power Query -> Web.Contents response header?

let
    url = "http://XXXX/Account/Login",
    body = "{""UserName"": ""test""}",
    Source = Json.Document(Web.Contents(url,[          
     Headers = [#"Content-Type"="application/json"],
     Content = Text.ToBinary(body) 
    ]))
in
    Source

How to read the Header value from Source?

There is no way to get response headers. You may get only request headers and some additional information. Use Value.Metadata function

let
    md = Value.Metadata(Web.Contents("https://www.google.com", [Headers=[qwer="asdf"], Query=[q="test"], IsRetry=true]))
in
    md

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM