export class Mastodon { constructor(instance, token) { if (instance.indexOf('://') == -1) { instance = 'https://' + instance; } this.instance = instance; this.token = token; } async get(endpoint, options) { let url = this.instance + endpoint + '?' + new URLSearchParams(options); const res = await fetch(url, { headers: { 'Authorization': 'Bearer ' + this.token, }, }); if (res.status == 401) { throw 401; } return res.json(); } async post(endpoint, body) { const fd = new FormData(); for (let key in body) { fd.append(key, body[key]); } const res = await fetch(this.instance + endpoint, { method: 'POST', body: fd, }); return res.json(); } }