-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfAPIvision.pq
19 lines (17 loc) · 863 Bytes
/
fAPIvision.pq
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(URL) =>
let
JsonRecords = URL,
JsonRequest = "{""url"": """ & JsonRecords & """}",
JsonContent = Text.ToBinary(JsonRequest, TextEncoding.Ascii),
Response =
Web.Contents("https://YOUR_REGION.api.cognitive.microsoft.com/vision/v1.0/analyze?",
[Headers=[#"Ocp-Apim-Subscription-Key"="YOUR_KEY", #"Content-Type"="application/json"],
Content=JsonContent
]),
JsonResponse = Json.Document(Response,1252),
categories = JsonResponse[categories],
ListToTable = Table.FromList(categories, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
ExpandTable = Table.ExpandRecordColumn(ListToTable, "Column1", {"name", "score"}, {"description", "confidence"}),
Output = Table.TransformColumnTypes(ExpandTable,{{"description", type text}, {"confidence", type number}})
in
Output