I am using Python 2.7 runtime with NDB from 1.6.2 SDK in Google App Engine.
I get the following error:
BadRequestError: application s ~ myapphr cannot access application data dev ~ myapphr
Based on this code:
device = model.Key(urlsafe=device_id).get()
I access my application from dev.myapp.appspot.com, which is an alias of myapphr. device_id was created in the same version of dev.myapphr.
What's happening?
source share