How to authenticate Google Appegine (Python) Remote API access
I wrote a script that is supposed to run locally on a computer and modify some GAE data store entries. This is how I connect to my GAE: def auth_func(): return ('username@gmail.com','topsecret') #return ('seconduser@gmail.com','topsecret2') def connect(): remote_api_stub.ConfigureRemoteApi(None,'/_ah/remote_api', auth_func, 'myapp.appspot.com', secure=True) remote_api_stub.MaybeInvokeAuthentication() When I try to authenticate to the remote API everything works fine as long as I use the account that actually created the appengine. In the GAE permissions I added a second user as 'owner' who