blob: 773ba9a40361230b6a23ed9a4b8a0abc122948e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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();
}
}
|