Remove unused scopes
This commit is contained in:
parent
44aaab179b
commit
05c155d1f7
1 changed files with 1 additions and 1 deletions
2
app.js
2
app.js
|
@ -44,7 +44,7 @@ app.get('/login', function (req, res) {
|
||||||
res.cookie(stateKey, state);
|
res.cookie(stateKey, state);
|
||||||
|
|
||||||
// your application requests authorization
|
// your application requests authorization
|
||||||
var scope = 'user-read-private user-read-email playlist-modify-private playlist-read-private playlist-read-collaborative';
|
var scope = 'playlist-read-private playlist-read-collaborative';
|
||||||
res.redirect('https://accounts.spotify.com/authorize?' +
|
res.redirect('https://accounts.spotify.com/authorize?' +
|
||||||
querystring.stringify({
|
querystring.stringify({
|
||||||
response_type: 'code',
|
response_type: 'code',
|
||||||
|
|
Loading…
Reference in a new issue