Home > Software design >  GCP - Can't access Datastore
GCP - Can't access Datastore

Time:03-01

I've logged into the Google Cloud Platform console today and I can no longer see or create any entities in GCP Datastore. I don't use this interface very regularly, but I'm sure that I used to be able to see a list of the entities in the datastore, and be able to manually edit them. Today I'm seeing no entities, and I get the following error message :

"Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project."

The link seems to point me off to a page that talks about integrating Google Sign-in into my web application - that doesn;t seem relevant to me at the moment - I'm just trying to use the GCP console itself

CodePudding user response:

Moving details from comments section to full answer

  1. The correct URL to access Cloud Console is https://console.cloud.google.com and then you select Datastore from the drop down menu on the left

  2. OP was using an old url - https://console.*developers*.google.com/

  • Related