Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the command to log out of Google App Engine SDK?

I completed version 1 of my Google App Engine site but when deploying it I used a different set of credentials from the ones I registered the Google App Engine app ID under. Accordingly the GAE SDK can't upload my app when I give the command:

mvn appengine:update

...because it remembers the wrong credentials and never asks me for the correct ones. How do I log out of the old credentials and log in with the new ones?

like image 321
Ags1 Avatar asked Feb 13 '17 07:02

Ags1


People also ask

What is SDK in Google App Engine?

The App Engine SDK allows you to run Google App Engine Applications on your local computer. It simulates the runtime environment of the Google App Engine infrastructure.


1 Answers

If you're on Windows : Go in your "C:/Users/whicheverUserIsYou". You should find a file called ".appcfg_oauth2_tokens_java".

If you're on Linux : the file is in fact "~/.appcfg_oauth2_tokens_java"

This is the file containing your credentials. Delete/Rename it, maven will ask for your credentials again.

like image 184
Bravin Balasubramaniam Avatar answered Sep 17 '22 18:09

Bravin Balasubramaniam