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

和自甴很熟 提交于 2019-12-02 19:23:56

问题


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


回答1:


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




回答2:


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.



来源:https://stackoverflow.com/questions/1317306/can-one-application-access-other-applications-data-querying-the-key-in-google-ap

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!