Skip to content

Instantly share code, notes, and snippets.

View Ramona2020's full-sized avatar

Ramona Ramona2020

View GitHub Profile
@Ramona2020
Ramona2020 / 01-lookup-words
Created January 20, 2017 21:43 — forked from AdamSteffanick/01-lookup-words.xquery
Looking up words in the OED with XQuery
xquery version "3.1";
let $word := "person"
let $request :=
<http:request href="https://od-api.oxforddictionaries.com/api/v1/entries/en/{$word}" method="get">
<http:header name="app_key" value="###"/>
<http:header name="app_id" value="###"/>
</http:request>
return http:send-request($request)