Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

Query contains unsupported function. Function name: Web.Contents

Hello everyone

 

I'm trying to adapt my url to make the query based on this topic and this other link, but that doesn't make the update work.

 

How can I do the url partitioning in the correct way?

 

 

token_ = #"Column1 Expandido"{0}[Token],

//Url
url = "https://services3.arcgis.com/xxxxxxxyyyyzzzz/arcgis/rest/services/service_abr54aahsh789sdsg/FeatureServer/15/query?where=1%3D1&outFields=*&returnGeometry=false&f=json&token=" & token_,
    
Source_fs = Json.Document(Web.Contents(url)),
       
//Query
features = Source_fs[features],
#"Converted to Table" = Table.FromList(features, Splitter.SplitByNothing(), null, null, ExtraValues.Error),

 

 

5 Replies