Skip to content

Commit

Permalink
fix: Fix OAuth login (#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
arjankowski authored Jul 25, 2022
1 parent f8cc176 commit 579b44b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/commands/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const fs = require('fs');
const BoxSDK = require('box-node-sdk');
const BoxCLIError = require('../cli-error');
const CLITokenCache = require('../token-cache');
const pkg = require('../../package.json');
const chalk = require('chalk');
const open = require('open');
const express = require('express');
Expand Down Expand Up @@ -57,11 +58,16 @@ class OAuthLoginCommand extends BoxCommand {
authMethod: 'oauth20',
};

const sdkConfig = Object.freeze({
analyticsClient: {
version: pkg.version,
}
});
const sdk = new BoxSDK({
clientID: answers.clientID,
clientSecret: answers.clientSecret,
});
this._configureSdk(sdk);
this._configureSdk(sdk, sdkConfig);

const app = express();
let server;
Expand Down

0 comments on commit 579b44b

Please sign in to comment.