Heroku Login Error: Can not read property 'body' of undefined

0

Hello

I'm getting the following error while trying to log in.

heroku login
heroku: Enter your login credentials
Email: ########@gmailTypeError: Cannot read property 'body' of undefined 
    at new HerokuAPIError (C:/ProgramFiles/heroku/client/node_modules/@heroku-cli/command/lib/api_client.js:12:33)
    at Login.login (C:/Program Files/heroku/client/node_modules/@heroku-cli/command/lib/login.js:78:19)

Has anyone ever had this problem, and would have the solution?

    
asked by anonymous 09.06.2018 / 18:19

1 answer

1

There was an update that solved the problem.

In GitHub, the jdxcode which is a member of Heroku, reported that the last update (7.0.88) solves the login problem.

Just run the update.

C:\Users\Marcio                                                                    
λ heroku update                                                                    
heroku: Updating CLI from 7.0.87-beta.5da7c01 to 7.0.87-beta.99c8869 (beta)... done
heroku: Updating CLI... done                                                       

C:\Users\Marcio                                                                    
λ heroku login                                                                     
heroku: Enter your login credentials                                               
Email: ########@gmail.com                                                        
Password: **********                                                              
Logged in as #######@gmail.com
    
10.06.2018 / 16:05