Add authorization header support for API requests
This commit is contained in:
parent
4769a9e335
commit
a9ae1d92b7
1 changed files with 9 additions and 1 deletions
10
index.ts
10
index.ts
|
@ -6,9 +6,17 @@ type repo = {
|
|||
}
|
||||
type repos = repo[]
|
||||
|
||||
const fetchOpts: RequestInit = {}
|
||||
|
||||
if (process.env.AuthorizationHeaderToken) {
|
||||
fetchOpts.headers = {
|
||||
"Authorization": `Bearer ${process.env.AuthorizationHeaderToken}`
|
||||
}
|
||||
}
|
||||
|
||||
const getTopLangs = async (type: "users" | "orgs", name: string) => {
|
||||
const obj: Record<string, number> = {}
|
||||
const userRepoResp = await fetch(`https://git.creations.works/api/v1/${type}/${name}/repos?limit=0`);
|
||||
const userRepoResp = await fetch(`https://git.creations.works/api/v1/${type}/${name}/repos?limit=0`, fetchOpts);
|
||||
const userRepos = await userRepoResp.json() as repos;
|
||||
|
||||
for (const repo of userRepos) {
|
||||
|
|
Loading…
Add table
Reference in a new issue