2016-11-06 81 views
9

我使用GitHub进行代码提交,并且该Git URL集成到Heroku进行部署。我做了很多次,每次都有效,但现在这次我得到一个错误:Heroku会抛出一个错误,如“推送被拒绝,未经授权访问”。

Push rejected, Unauthorized access

我在使用Node.js.作为后端。这里是我的package.json文件(电子邮件代替):

{ 
"name": "wrapperdemo", 
"version": "1.0.0", 
"description": "Payment Gatway demo", 
"scripts": { 
"start": "node app.js" 
}, 
"dependencies": { 
"express": "~4.13.3", 
"node-libcurl": "*", 
"node-jquery-param": "*", 
"xml2js": "^0.4.17" 
}, 
"author": "Gunjan <[email protected]>", 
"license": "ISC" 
} 

错误:

Enter image description here

+2

Heroku有构建问题。请检查https://status.heroku.com/incidents/977 – avinoth

回答

5

这似乎是目前正在调查,认定为2016年11月6日的一个错误,UTC 08:48看到— here


此错误被认为是在同一天的09:37 UTC时解决的。

+0

似乎现在为我工作(11/6/2016,09.30 UTC) – Nick

1

我有我的node.js应用程序相同的错误。我通过删除.gitignore文件修复了它,并且它再次运行!

更好地等待Heroku对此问题的反馈。

+0

我downvoting这是因为.gitignore文件似乎并没有这是事件的原因(这只是一个暂时的错误),而且对于未来的访问者来说,认为“删除你的gitignore”可以解决认证问题是不幸的。 – doppelgreener

相关问题