I'am begining with heroku and I simply want to connect to my github account. When I do it, I get this error message as a small red pop up on the upper right side of the page : Items could not be retrieved, Internal server error. Could someone help me, please ?
CodePudding user response:
This feature is currently disabled while Heroku investigates a security breach:
To mitigate impact from potentially compromised OAuth tokens, we will revoke over the next several hours all existing tokens from the Heroku GitHub integration. We are also preventing new OAuth tokens from being created until further notice. Your GitHub repositories will not be affected in any way by this action.
I suggest you use one of Heroku's other deployment options instead, e.g. git push
ing directly to Heroku.
CodePudding user response:
It is just a temporary thing, more details about this issue are here
You could push to both GitHub and Heroku at once for a temporary solution
git push -u heroku <branch>
git push -u origin <branch>