Am einfachsten ist es, das Problem mit gcloud cli zu beheben. Weitere Dokumente finden Sie hier https://cloud.google.com/pubsub/docs/quickstart-cli#before-you-begin
gcloud installieren
sudo apt-get install google-cloud-sdk
Dann ruf an
gcloud init
Überprüfen Sie dann Ihr aktives Projekt und Ihre Anmeldeinformationen
gcloud config configurations list
Wenn dies nicht in Ordnung ist, stellen Sie sicher, dass Sie mit dem richtigen Konto authentifiziert sind:
gcloud auth list
* account 1
account 2
Wechseln Sie zum Projektkonto, wenn nicht:
gcloud config set account `ACCOUNT`
Je nach Konto ist die Projektliste unterschiedlich:
gcloud projects list
- project 1
- project 2...
Zum beabsichtigten Projekt wechseln:
gcloud config set project `PROJECT NAME`
Erstellen Sie dann Standardanmeldeinformationen für Anwendungen mit gcloud auth application-default login
, und Google Cloud erkennt diese Anmeldeinformationen automatisch.