-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgithub.js
More file actions
25 lines (18 loc) · 764 Bytes
/
github.js
File metadata and controls
25 lines (18 loc) · 764 Bytes
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
class Github {
constructor() {
this.client_id = 'a6b0f24c04832cb9915f';
this.client_secret = 'ac12bd8d87163cd2f517f0abd3827e6a5679b0d3';
this.repos_count = 5;
this.repos_sort = 'created: asc';
}
async getUser(user) {
const profileResponse = await fetch(`https://api.github.com/users/${user}?client_id=${this.client_id}&client_secret=${this.client_secret}`);
const reposResponse = await fetch(`https://api.github.com/users/${user}/repos?per_page=${this.repos_count}&sort=${this.repos_sort}&client_id=${this.client_id}&client_secret=${this.client_secret}`);
const profile = await profileResponse.json();
const repos = await reposResponse.json();
return {
profile,
repos
}
}
}