gpt4 book ai didi

angularjs - StormPath Node Express Heroku 错误 'apiKey.id is required'

转载 作者:太空宇宙 更新时间:2023-11-04 02:21:53 25 4
gpt4 key购买 nike

我有一个使用 Stormpath 进行身份验证的 Express/Angular 应用程序。一切都在我的本地实现上运行,但是当我尝试推送到 Heroku 时,它崩溃并出现以下错误。

错误:

"015-10-07T03:40:29.632276+00:00 heroku[web.1]: Starting process with command `npm start`
2015-10-07T03:40:32.269520+00:00 app[web.1]: > cmpe165@1.0.0 start /app
2015-10-07T03:40:32.269497+00:00 app[web.1]:
2015-10-07T03:40:32.269522+00:00 app[web.1]: > node index.js
2015-10-07T03:40:32.269523+00:00 app[web.1]:
2015-10-07T03:40:34.196981+00:00 app[web.1]:
2015-10-07T03:40:34.197063+00:00 app[web.1]: /app/node_modules/express-stormpath/node_modules/stormpath/lib/authc/RequestAuthenticator.js:8
2015-10-07T03:40:34.197300+00:00 app[web.1]: throw new Error('apiKey.id is required.');
2015-10-07T03:40:34.197307+00:00 app[web.1]: ^
2015-10-07T03:40:34.199043+00:00 app[web.1]: Error: apiKey.id is required.
2015-10-07T03:40:34.199047+00:00 app[web.1]: atBasicRequestAuthenticator.RequestAuthenticator (/app/node_modules/express-stormpath/node_modules/stormpath/lib/authc/RequestAuthenticator.js:8:11)
2015-10-07T03:40:34.199048+00:00 app[web.1]: at new BasicRequestAuthenticator (/app/node_modules/express-stormpath/node_modules/stormpath/lib/authc/BasicRequestAuthenticator.js:7:36)
2015-10-07T03:40:34.199054+00:00 app[web.1]: at Object.getAuthenticator (/app/node_modules/express-stormpath/node_modules/stormpath/lib/authc/index.js:27:15)
2015-10-07T03:40:34.199055+00:00 app[web.1]: at new RequestExecutor (/app/node_modules/express-stormpath/node_modules/stormpath/lib/ds/RequestExecutor.js:26:37)
2015-10-07T03:40:34.199056+00:00 app[web.1]: at new DataStore (/app/node_modules/express-stormpath/node_modules/stormpath/lib/ds/DataStore.js:46:52)
2015-10-07T03:40:34.199058+00:00 app[web.1]: at new Client (/app/node_modules/express-stormpath/node_modules/stormpath/lib/Client.js:39:21)
2015-10-07T03:40:34.199059+00:00 app[web.1]: at initClient (/app/node_modules/express-stormpath/lib/stormpath.js:31:16)
2015-10-07T03:40:34.199061+00:00 app[web.1]: at Object.module.exports.init (/app/node_modules/express-stormpath/lib/stormpath.js:67:16)
2015-10-07T03:40:34.199062+00:00 app[web.1]: at Object.<anonymous> (/app/index.js:9:37)
2015-10-07T03:40:34.199063+00:00 app[web.1]: at Module._compile (module.js:456:26)
2015-10-07T03:40:34.220191+00:00 app[web.1]:
2015-10-07T03:40:34.229264+00:00 app[web.1]: npm ERR! cmpe165@1.0.0 start: `node index.js`
2015-10-07T03:40:34.229476+00:00 app[web.1]: npm ERR! Exit status 8
2015-10-07T03:40:34.229630+00:00 app[web.1]: npm ERR!
2015-10-07T03:40:34.229727+00:00 app[web.1]: npm ERR! Failed at the cmpe165@1.0.0 start script.
2015-10-07T03:40:34.230335+00:00 app[web.1]: npm ERR! This is most likely a problem with the cmpe165 package,
2015-10-07T03:40:34.230428+00:00 app[web.1]: npm ERR! not with npm itself.
2015-10-07T03:40:34.230541+00:00 app[web.1]: npm ERR! Tell the author that this fails on your system:
2015-10-07T03:40:34.230633+00:00 app[web.1]: npm ERR! node index.js
2015-10-07T03:40:34.230846+00:00 app[web.1]: npm ERR! npm owner ls cmpe165
2015-10-07T03:40:34.230758+00:00 app[web.1]: npm ERR! You can get their info via:
2015-10-07T03:40:34.230939+00:00 app[web.1]: npm ERR! There is likely additional logging output above.
2015-10-07T03:40:34.231109+00:00 app[web.1]: npm ERR! System Linux 3.13.0-61-generic
2015-10-07T03:40:34.231263+00:00 app[web.1]: npm ERR! command "/app/.heroku/node/bin/node" "/app/.heroku/node/bin/npm" "start"
2015-10-07T03:40:34.231385+00:00 app[web.1]: npm ERR! cwd /app
2015-10-07T03:40:34.231508+00:00 app[web.1]: npm ERR! node -v v0.10.40
2015-10-07T03:40:34.231632+00:00 app[web.1]: npm ERR! npm -v 1.4.28
2015-10-07T03:40:34.231764+00:00 app[web.1]: npm ERR! code ELIFECYCLE
2015-10-07T03:40:34.234027+00:00 app[web.1]: npm ERR!
2015-10-07T03:40:34.234774+00:00 app[web.1]: npm ERR! /app/npm- debug.log
2015-10-07T03:40:34.234115+00:00 app[web.1]: npm ERR! Additional logging details can be found in:
2015-10-07T03:40:34.234999+00:00 app[web.1]: npm ERR! not ok code 0
2015-10-07T03:40:35.141609+00:00 heroku[web.1]: Process exited with status 1
2015-10-07T03:40:35.163609+00:00 heroku[web.1]: State changed from starting to crashed"

express 服务器:

var express = require('express');
var stormpath = require('express-stormpath');

var app = express();

app.use(express.static(__dirname + '/public'));
app.use(express.static(__dirname + '/controllers'));

var stormpathMiddleware = stormpath.init(app, {
application: {
href: 'https://api.stormpath.com/v1/applications/173vkD8p8nkeJb55sXM6WW'
},
expandCustomData: true,
enableForgotPassword: true,
website: {
login: {
enabled: true,
nextUri: __dirname + '/views/jobform.html'
}
}
});

app.use(stormpathMiddleware);


app.get("/", function(req,res){
res.status(200).sendFile(__dirname + '/views/login.html');
});

app.post("/home", function(req,res){
res.status(200).sendFile(__dirname + '/views/jobform.html');
});

app.get("/jobs", function(req,res){
res.status(200).sendFile(__dirname + '/views/jobform.html');
})

app.get("/create", function(req,res){
res.status(200).sendFile(__dirname + '/views/jobform.html');
})

// Listen for incoming requests and serve them.
app.on('stormpath.ready', function() {
app.listen(process.env.PORT || 9000, function() {
console.log("Starting server...");
});
});

最佳答案

看起来您那里有一些配置错误,我刚刚在这里修复了它们:

var stormpathMiddleware = stormpath.init(app, {
application: {
href: 'https://api.stormpath.com/v1/applications/173vkD8p8nkeJb55sXM6WW'
},
expandCustomData: true,
website: true,
web: {
login: {
enabled: true,
nextUri: __dirname + '/views/jobform.html'
}
},
client: {
apiKey: {
id: 'xxx',
secret: 'xxx'
}
}
});

app.use(stormpathMiddleware);

app.get("/", function(req,res) {
res.status(200).sendFile(__dirname + '/views/login.html');
});

app.post("/home", function(req,res){
res.status(200).sendFile(__dirname + '/views/jobform.html');
});

app.get("/jobs", function(req,res){
res.status(200).sendFile(__dirname + '/views/jobform.html');
})

app.get("/create", function(req,res){
res.status(200).sendFile(__dirname + '/views/jobform.html');
})

// Listen for incoming requests and serve them.
app.on('stormpath.ready', function() {
app.listen(process.env.PORT || 9000, function() {
console.log("Starting server...");
});

关于angularjs - StormPath Node Express Heroku 错误 'apiKey.id is required',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32983531/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com