File tree 4 files changed +15
-1
lines changed
4 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,9 @@ export const SECRETS: Secrets = {
16
16
ZOOM_CLIENT_ID: "PHWkXfbFSjWV5oNin9Djg",
17
17
ZOOM_CLIENT_SECRET: "...",
18
18
ZOOM_SECRET_TOKEN: "...",
19
+
20
+ GOOGLE_CLIENT_ID: "...",
21
+ GOOGLE_CLIENT_SECRET: "...",
19
22
};
20
23
21
24
HERE
Original file line number Diff line number Diff line change @@ -2,3 +2,6 @@ export const ZOOM_API_URL = "https://api.zoom.us/v2";
2
2
export const ZOOM_AUTHORIZE_URL = "https://zoom.us/oauth/authorize" ;
3
3
export const ZOOM_TOKEN_URL = "https://zoom.us/oauth/token" ;
4
4
export const ZOOM_USER_ID = "410467" ;
5
+
6
+ export const GOOGLE_AUTHORIZE_URL = "https://accounts.google.com/o/oauth2/auth" ;
7
+ export const GOOGLE_TOKEN_URL = "https://accounts.google.com/o/oauth2/token" ;
Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ export interface Secrets {
6
6
ZOOM_CLIENT_ID : string ;
7
7
ZOOM_CLIENT_SECRET : string ;
8
8
ZOOM_SECRET_TOKEN : string ;
9
+
10
+ GOOGLE_CLIENT_ID : string ;
11
+ GOOGLE_CLIENT_SECRET : string ;
9
12
}
10
13
11
14
export interface GlobalContext {
Original file line number Diff line number Diff line change 7
7
*/
8
8
9
9
import axios from "axios" ;
10
- import { ZOOM_AUTHORIZE_URL , ZOOM_TOKEN_URL } from "./constants" ;
10
+ import {
11
+ GOOGLE_AUTHORIZE_URL ,
12
+ GOOGLE_TOKEN_URL ,
13
+ ZOOM_AUTHORIZE_URL ,
14
+ ZOOM_TOKEN_URL ,
15
+ } from "./constants" ;
11
16
import { GlobalContext } from "./interfaces" ;
12
17
import express from "express" ;
13
18
import { stringify } from "node:querystring" ;
You can’t perform that action at this time.
0 commit comments