next.js API如何使用passport?

How to use passport with next.js API?

我正在尝试将 passport-spotify 与 next.js 的 pages/api(您使用 export default (req, res)... 的那个)一起使用,但我无法使用重定向到 Spotify 的授权页面。这是我的 pages/api/spotify.js:

代码
var passport = require('passport');
const SpotifyStrategy = require('passport-spotify').Strategy;

passport.use(
  new SpotifyStrategy(
    {
      clientID: clientid,
      clientSecret: clientsecret,
      callbackURL: 'http://localhost:3000/auth/spotify/callback'
    },
    function(accessToken, refreshToken, expires_in, profile, done) {
      User.findOrCreate({ spotifyId: profile.id }, function(err, user) {
        return done(err, user);
      });
    }
  )
);

export default (req, res, next) => {
    passport.authenticate('spotify', {
        scope: ['user-read-email', 'user-read-private'],
        showDialog: true
      }),
    res.end()
}

我试过使用 express 对其进行测试,它在那里工作。这是我的代码:

const express = require('express')
const app = express()
const port = 8000
var passport = require('passport');
const SpotifyStrategy = require('passport-spotify').Strategy;

passport.use(
  new SpotifyStrategy(
    {
      clientID: clientid,
      clientSecret: clientsecret,
      callbackURL: 'http://localhost:3000/api/callback'
    },
    function(accessToken, refreshToken, expires_in, profile, done) {
      User.findOrCreate({ spotifyId: profile.id }, function(err, user) {
        return done(err, user);
      });
    }
  )
);
app.get(
    '/auth/spotify',
    passport.authenticate('spotify', {
      scope: ['user-top-read'],
      showDialog: true
    }),
    function(req, res) {
      // The request will be redirected to spotify for authentication, so this
      // function will not be called.
    }
  );

app.listen(port, () => {
  console.log(`Example app listening at http://localhost:${port}`)
})

有没有办法让 Next.js 使用 Passport?

我明白了!我用了next-connect。这是一个带有 passport-spotify 和 next.js 的 Spotify 身份验证请求示例:

// pages/api/spotify.js
import nc from 'next-connect';
var passport = require('passport');
const SpotifyStrategy = require('passport-spotify').Strategy;

passport.use(
  new SpotifyStrategy(
    {
      clientID: clientid,
      clientSecret: clientsecret,
      callbackURL: 'http://localhost:3000/api/callback'
    },
    function(accessToken, refreshToken, expires_in, profile, done) {
      User.findOrCreate({ spotifyId: profile.id }, function(err, user) {
        return done(err, user);
      })
    }
  ))

const handler = nc()
  .get(passport.authenticate('spotify', {
    scope: ['user-top-read']
  }), (req, res) => {
  })

export default handler;