Skip to content

Commit

Permalink
Merge pull request #1 from Aimsucks/master
Browse files Browse the repository at this point in the history
Removed publicData from default scopes.
  • Loading branch information
Andy committed Oct 26, 2019
2 parents 9628a4d + 81153fd commit f860746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/strategy.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function Strategy(options, verify) {
options = options || {};
options.authorizationURL = options.authorizationURL || 'https://login.eveonline.com/v2/oauth/authorize/';
options.tokenURL = options.tokenURL || 'https://login.eveonline.com/v2/oauth/token';
options.scope = options.scope || 'publicData';
options.scope = options.scope || '';

OAuth2Strategy.call(this, options, verify);
this._oauth2.useAuthorizationHeaderforGET(true);
Expand Down

0 comments on commit f860746

Please sign in to comment.