Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,19 @@
"methods": ["GET", "POST", "DELETE"],
"timeout": 20
},
{ "url": "https://zoom.us/oauth/.*", "methods": ["POST"], "timeout": 20 }
{
"url": "https://zoom.us/oauth/.*",
"methods": ["POST"],
"timeout": 20,
"settingsInjection": {
"client_id": {
"header": ["Authorization"]
},
"client_secret": {
"header": ["Authorization"]
}
}
}
]
}
}
5 changes: 0 additions & 5 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ export const ACCESS_TOKEN = `[user[${ACCESS_TOKEN_PATH}]]`;
export const REFRESH_TOKEN_PATH = "oauth/global/refresh_token";
export const REFRESH_TOKEN = `[user[${REFRESH_TOKEN_PATH}]]`;

export const placeholders = {
client_id: "__client_id__",
client_secret: "__client_secret__",
};

/** Zoom */
export const REST_URL = "https://api.zoom.us/v2";

Expand Down
Loading