Reputation: 61
I would like to use the Datastore Remote API to share data between two GAE applications (http://code.google.com/appengine/docs/java/tools/remoteapi.html) To do that I understand that I need to add a servlet to my GAE application, but I'm a bit worried about security. Ideally I would like this servlet to be visible only to other GAE applications, but not to other clients outside of Google's datacenters. Is there any way to configure this ?
Upvotes: 2
Views: 485
Reputation: 101149
remote_api is only ever accessible by administrators of your application, unless you configure it otherwise.
Upvotes: 4