Jader Dias
Jader Dias

Reputation: 90535

Can one application access other applications data querying the key in Google App Engine?

It would be an enormous security flaw if it does.

Proposed method:

entity = db.get(key)

source: http://code.google.com/appengine/docs/python/datastore/creatinggettinganddeletingdata.html#Getting_an_Entity_Using_a_Key

Upvotes: 0

Views: 627

Answers (2)

Nick Johnson
Nick Johnson

Reputation: 101149

No. But you could do it using remote_api (and with the permission of the other app's owner).

Upvotes: 3

Peter Recore
Peter Recore

Reputation: 14187

No you cannot, unless there is a particular bug you have discovered. Is there any particular reason you think it is possible? This seems fairly easy to test, if you are worried about it. Just create two apps and try to access data from app A from app B.

Upvotes: 3

Related Questions