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
35
36
37
38
export class ValTownAPI {
constructor(private apiKey: string) {}
async getUserID() {
const response = await fetch('https://api.val.town/v1/me', {
method: 'GET',
headers: {
'Authorization': `Bearer ${this.apiKey}`,
'Content-Type': 'application/json'
}
});
if (!response.ok) {
throw new Error(`Error fetching user details: ${response.statusText}`);
}
const userDetails = await response.json();
return userDetails.id;
}
async getAllVals() {
const userId = await this.getUserID();
const response = await fetch(`https://api.val.town/v1/users/${userId}/vals`, {
method: 'GET',
headers: {
'Authorization': `Bearer ${this.apiKey}`,
'Content-Type': 'application/json'
}
});
if (!response.ok) {
throw new Error(`Error fetching vals: ${response.statusText}`);
}
return response.json();
}
}