mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-07 14:08:38 +00:00
feat: add certs and proxy config for bruno-cli oauth2 requests (#6423)
This commit is contained in:
@@ -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 = {
|
||||
|
||||
Reference in New Issue
Block a user