我试图在我的本地express-stormpath项目上运行NodeJS,但是我不能做任何事情来注册以获得API密钥。当我这么做时:
var stormpath = require("express-stormpath");
app.use(stormpath.init(app, {
web: {
register: {
enabled: false
}
}
}));所有的文档告诉我,我应该能够访问http://localhost:3000/login和http://localhost:3000/register来验证“安装”工作,但是我只是被超时了。我的控制台上写着:
错误: API密钥ID和机密是必需的。
当我去网站,我只能登录,当我去https://api.stormpath.com/register注册一个帐户,它只是重定向到登录页面(从这里获得链接)。
我该怎么做才能注册一个帐户?这是我处理过的最令人沮丧的事情之一。
发布于 2017-03-16 04:44:26
https://stackoverflow.com/questions/42823363
复制相似问题