Skip to content

Commit

Permalink
update redirect uris
Browse files Browse the repository at this point in the history
  • Loading branch information
helenkulka committed Mar 16, 2021
1 parent a1f6103 commit 0e7c8c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion routes/callback.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var generateRandomString = function(length) {

var client_id = process.env.REACT_APP_CLIENT_ID;// Your client id
var client_secret = process.env.REACT_APP_CLIENT_SECRET;// Your secret
var redirect_uri = 'http://spotify-taste-tester.herokuapp.com/callback';
var redirect_uri = 'http://frankoceanmetric.com/callback';

router.get('/', function(req, res) {

Expand Down
2 changes: 1 addition & 1 deletion routes/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var querystring = require('querystring');
var router = express.Router();

var client_id = process.env.REACT_APP_CLIENT_ID; // Your client id
var redirect_uri = 'http://spotify-taste-tester.herokuapp.com/callback';
var redirect_uri = 'http://frankoceanmetric.com/callback';

var generateRandomString = function(length) {
var text = '';
Expand Down

0 comments on commit 0e7c8c7

Please sign in to comment.