Express サーバーを実行していて、エンドポイントに 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,
}));