-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.js
54 lines (52 loc) · 1017 Bytes
/
index.js
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import { Lists, Tips, Photos, Venues } from "./lib/api";
export default class Foursquare {
constructor(
client_id,
client_secret,
version = "20171001",
apiUrl = "https://api.foursquare.com/v2",
locale = "en"
) {
const credentials = {
client_id,
client_secret,
v: version
};
this.venuesInstance = new Venues({
credentials,
apiUrl,
locale,
apiFeature: "/venues"
});
this.photosInstance = new Photos({
credentials,
apiUrl,
locale,
apiFeature: "/photos"
});
this.tipsInstance = new Tips({
credentials,
apiUrl,
locale,
apiFeature: "/tips"
});
this.listsInstance = new Lists({
credentials,
apiUrl,
locale,
apiFeature: "/lists"
});
}
get venues() {
return this.venuesInstance;
}
get photos() {
return this.photosInstance;
}
get tips() {
return this.tipsInstance;
}
get lists() {
return this.listsInstance;
}
}