GOOGLE_APPLICATION_CREDENTIALS error

倾然丶 夕夏残阳落幕 提交于 2019-12-03 00:22:06
cherba

gcloud credentials and and application default credentials are managed separately. If you activated service account key file this only can be used for gcloud commands but not for application default credentials.

gcloud auth application-default set of commands are there only to manage application default and having nothing to do with commands in gcloud auth.

There a few ways to "activate" application default credentials:

  • Use your user account
    • Run gcloud auth application-default login, or
  • Use service account (preferred)

    • set environment variable GOOGLE_APPLICATION_CREDENTIALS=path/to/your/service_accont_key_file.json
    • copy path/to/your/service_accont_key_file.json to ~/.config/gcloud/application_default_credentials.json`

      • On windows this might be different, run

        gcloud info --format="value(config.paths.global_config_dir)"
        

        to get a path to your config directory.

now command like

gcloud auth application-default print-access-token

should work.

Prabhat Yadav

As A solution you can Download the GCLOUD console and then RUN this command on console "gcloud auth application-default" login with the gmail account which have the project access and then you will get access of google api which are enabled.

you can generate your key json file on gcloud using this command: gcloud auth application-default login

google will display a link to confirm, once you do, there will be the json file ina temp folder displayed

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!