我正在运行一个快速服务器,只是在我的端点上设置了 JWT 保护。我正在测试我的/graphql
端点,我收到 403Not allowed to provide a JWT token
错误。我的其他端点工作正常,所以我不认为这是 JWT 签名或验证的问题。有任何想法吗?
var jwt = require('express-jwt');
var app = express();
var jwtCheck = jwt({
secret: new Buffer(config.secret, 'base64'),
audience: aud,
issuer: iss
});
// enforce on all endpoints
app.use(jwtCheck);
app.use('/', postgraphql(config.db_string, config.db_schema, {
development: true,
log: true,
secret: config.secret,
graphiql: true,
}));