diff options
Diffstat (limited to 'kittybox-rs/companion-lite/micropub_api.js')
-rw-r--r-- | kittybox-rs/companion-lite/micropub_api.js | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/kittybox-rs/companion-lite/micropub_api.js b/kittybox-rs/companion-lite/micropub_api.js deleted file mode 100644 index 402c075..0000000 --- a/kittybox-rs/companion-lite/micropub_api.js +++ /dev/null @@ -1,43 +0,0 @@ -export async function query_channels(endpoint, token) { - const response = await fetch(endpoint + "?q=config", { - headers: { - "Authorization": `Bearer ${get_token()}` - } - }) - - const config = await response.json(); - - return config["channels"] -} - -export async function submit(endpoint, token, mf2) { - try { - const response = await fetch(endpoint, { - method: "POST", - headers: { - "Authorization": `Bearer ${token}`, - "Content-Type": "application/json" - }, - body: JSON.stringify(mf2) - }) - - - if (response.status != 201 || response.status != 202) { - let err = await response.json(); - console.error("Micropub error!", err); - - return err; - } else { - return { - "location": response.headers.get("Location") - } - } - } catch (e) { - console.error("Network error!", e) - throw e - } -} - -// Local Variables: -// js-indent-level: 4 -// End: |