Currently I'm testing Google Cloud Datastore in php environment with the Google App Engine Launcher (version 1.8.8) on Windows 8.1. I'm using the google-api-php-client from GitHub (https://github.com/google/google-api-php-client) to authenticate and call the service.
The intent is to test the code locally with calls to remote services
If I try to insert data into the datastore through the classes provided by the client the operation is successful.
But if I try to do the same thing with a lookup call, I get the following error (Google_Service_Exception at google-api-php-client/src/Google/Http/REST.php on line 75):
Error calling POST https://www.googleapis.com/datastore/v1beta2/datasets/TESTAPP/lookup: (400) app s~TESTAPP cannot access app TESTAPP's data
If inserting data is done correctly, is not an authentication problem; So, where am I wrong?
(Sorry for my English)