Skip to content
This repository has been archived by the owner on Sep 12, 2022. It is now read-only.

Commit

Permalink
Merge c6dc193 into b95c50f
Browse files Browse the repository at this point in the history
  • Loading branch information
palmerabollo committed May 16, 2016
2 parents b95c50f + c6dc193 commit 222403c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ function TAccountsStrategy(options, verify) {
Authorization: 'Basic ' + new Buffer(options.clientID + ':' + options.clientSecret).toString('base64')
};

options.authorizationURL = options.authorizationURL || 'https://accounts.tid.es/telefonica/oauth/authorize';
options.tokenURL = options.tokenURL || 'https://accounts.tid.es/telefonica/oauth/token';
options.profileURL = options.profileURL || 'https://accounts.tid.es/api/v1/telefonica/users/me';
options.authorizationURL = options.authorizationURL || 'https://accounts.telefonica.com/telefonica/oauth/authorize';
options.tokenURL = options.tokenURL || 'https://accounts.telefonica.com/telefonica/oauth/token';
options.profileURL = options.profileURL || 'https://accounts.telefonica.com/api/v1/telefonica/users/me';

OAuth2Strategy.call(this, options, verify);
this.name = 'taccounts';
Expand Down

0 comments on commit 222403c

Please sign in to comment.