App Engine, appcfg and saving uploading credentials

前端 未结 4 1526
一生所求
一生所求 2021-01-19 02:40

On Linux, it seems that appcfg.py saves credentials when I use it to upload a new version of my application. However, this doesn\'t seem to happen OSX, and the password is a

相关标签:
4条回答
  • 2021-01-19 03:14

    You can use the OAuth 2.0 feature of appcfg to avoid the need to enter your login and password. It is documented for Java, Python and Go.

    Instead of using your login and password to authenticate you, you will proceed once through an OAuth 2.0 grant flow in your web browser. The results of that grant will be cached for future pushes.

    To use this feature, just add one option to your appcfg command: --oauth2. For Java, it looks like this:

    $  appcfg.sh --oauth2 update ./web
    
    0 讨论(0)
  • 2021-01-19 03:18

    Download the launcher for OSX, it allows to store the credentials in the OS Keychain.

    0 讨论(0)
  • 2021-01-19 03:23

    After

    1) Updating Google Appengine to version 1.4.2 via launcher (I might have hit 1.4.x bug?)

    2) Deleting cookie file

    it looks like cookie file started working again.

    It should have content like:

    # Netscape HTTP Cookie File
        # http://www.netscape.com/newsref/std/cookie_spec.html
        # This is a generated file!  Do not edit.
    
    appengine.google.com    FALSE....
    
    0 讨论(0)
  • 2021-01-19 03:28

    Check out the Python module keyring - http://bitbucket.org/kang/python-keyring-lib

    Supports Linux (Gnome,KDE), Win32 and OSX keychain backends. Worked great for me.

    0 讨论(0)
提交回复
热议问题