feat: add certs and proxy config for bruno-cli oauth2 requests (#6423)

This commit is contained in:
lohit
2026-01-20 16:12:48 +00:00
committed by GitHub
parent 7689288763
commit 7e258003d5
12 changed files with 762 additions and 25 deletions

View File

@@ -21,10 +21,10 @@ const getFormattedOauth2Credentials = () => {
return credentialsVariables;
};
const getOAuth2Token = (oauth2Config) => {
const getOAuth2Token = (oauth2Config, axiosInstance) => {
let options = getOptions();
let verbose = options?.verbose;
return _getOAuth2Token(oauth2Config, tokenStore, verbose);
return _getOAuth2Token(oauth2Config, tokenStore, verbose, axiosInstance);
};
module.exports = {