- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道以前有人问过这种类型的问题,我已经解决了这个问题,但仍然面临这个问题。我用的是 this example .但是当我运行我的代码时,我遇到了以下异常
Failed to detect whether we are running on Google Compute Engine. java.net.ConnectException: Failed to connect to /169.254.169.254:80 at com.android.okhttp.internal.io.RealConnection.connectSocket(RealConnection.java:143) at com.android.okhttp.internal.io.RealConnection.connect(RealConnection.java:112) at com.android.okhttp.internal.http.StreamAllocation.findConnection(StreamAllocation.java:184) at com.android.okhttp.internal.http.StreamAllocation.findHealthyConnection(StreamAllocation.java:126) at com.android.okhttp.internal.http.StreamAllocation.newStream(StreamAllocation.java:95) at com.android.okhttp.internal.http.HttpEngine.connect(HttpEngine.java:281) at com.android.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.java:224) at com.android.okhttp.internal.huc.HttpURLConnectionImpl.execute(HttpURLConnectionImpl.java:461) at com.android.okhttp.internal.huc.HttpURLConnectionImpl.connect(HttpURLConnectionImpl.java:127) at com.google.api.client.http.javanet.NetHttpRequest.execute(NetHttpRequest.java:104) at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:981) at com.google.auth.oauth2.ComputeEngineCredentials.runningOnComputeEngine(ComputeEngineCredentials.java:191) at com.google.auth.oauth2.DefaultCredentialsProvider.tryGetComputeCredentials(DefaultCredentialsProvider.java:270) at com.google.auth.oauth2.DefaultCredentialsProvider.getDefaultCredentialsUnsynchronized(DefaultCredentialsProvider.java:194) at com.google.auth.oauth2.DefaultCredentialsProvider.getDefaultCredentials(DefaultCredentialsProvider.java:112) at com.google.auth.oauth2.GoogleCredentials.getApplicationDefault(GoogleCredentials.java:127) at com.google.auth.oauth2.GoogleCredentials.getApplicationDefault(GoogleCredentials.java:100) at com.google.api.gax.core.GoogleCredentialsProvider.getCredentials(GoogleCredentialsProvider.java:53) at com.google.api.gax.rpc.ClientContext.create(ClientContext.java:134) at com.google.cloud.dialogflow.v2.stub.GrpcSessionsStub.create(GrpcSessionsStub.java:75) at com.google.cloud.dialogflow.v2.stub.SessionsStubSettings.createStub(SessionsStubSettings.java:100) at com.google.cloud.dialogflow.v2.SessionsClient.(SessionsClient.java:132) at com.google.cloud.dialogflow.v2.SessionsClient.create(SessionsClient.java:114) at com.google.cloud.dialogflow.v2.SessionsClient.create(SessionsClient.java:106) at com.example.lpt_0096.dialogflowv2.MainActivity$MyAsync.detectIntentStream(MainActivity.java:76) at com.example.lpt_0096.dialogflowv2.MainActivity$MyAsync.doInBackground(MainActivity.java:61) at android.os.AsyncTask$2.call(AsyncTask.java:333) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:245) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) at java.lang.Thread.run(Thread.java:764) W/System.err: java.io.IOException: The Application Default Credentials are not available. They are available if running in Google Compute Engine. Otherwise, the environment variable GOOGLE_APPLICATION_CREDENTIALS must be defined pointing to a file defining the credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information. W/System.err: at com.google.auth.oauth2.DefaultCredentialsProvider.getDefaultCredentials(DefaultCredentialsProvider.java:119) W/System.err: at com.google.auth.oauth2.GoogleCredentials.getApplicationDefault(GoogleCredentials.java:127) W/System.err: at com.google.auth.oauth2.GoogleCredentials.getApplicationDefault(GoogleCredentials.java:100) W/System.err: at com.google.api.gax.core.GoogleCredentialsProvider.getCredentials(GoogleCredentialsProvider.java:53) W/System.err: at com.google.api.gax.rpc.ClientContext.create(ClientContext.java:134) W/System.err: at com.google.cloud.dialogflow.v2.stub.GrpcSessionsStub.create(GrpcSessionsStub.java:75) W/System.err: at com.google.cloud.dialogflow.v2.stub.SessionsStubSettings.createStub(SessionsStubSettings.java:100) W/System.err: at com.google.cloud.dialogflow.v2.SessionsClient.(SessionsClient.java:132) W/System.err: at com.google.cloud.dialogflow.v2.SessionsClient.create(SessionsClient.java:114) W/System.err: at com.google.cloud.dialogflow.v2.SessionsClient.create(SessionsClient.java:106) W/System.err: at com.example.lpt_0096.dialogflowv2.MainActivity$MyAsync.detectIntentStream(MainActivity.java:76) W/System.err: at com.example.lpt_0096.dialogflowv2.MainActivity$MyAsync.doInBackground(MainActivity.java:61) W/System.err: at android.os.AsyncTask$2.call(AsyncTask.java:333) W/System.err: at java.util.concurrent.FutureTask.run(FutureTask.java:266) W/System.err: at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:245) W/System.err: at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162) W/System.err: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636) W/System.err: at java.lang.Thread.run(Thread.java:764)
我是windows用户,android studio从哪里设置环境变量
最佳答案
来自错误
java.io.IOException: The Application Default Credentials are not available. They are available if running in Google Compute Engine. Otherwise, the environment variable GOOGLE_APPLICATION_CREDENTIALS must be defined pointing to a file defining the credentials
See https://developers.google.com/accounts/docs/application-default-credentials for more information.
您可能需要将此添加到环境变量路径 GOOGLE_APPLICATION_CREDENTIALS=path/to/your/service_accont_key_file.json
。并且应该从这里获取 json 文件 https://cloud.google.com/docs/authentication/getting-started .此外,如果您不知道如何设置环境变量路径,您可以查看此 https://www.computerhope.com/issues/ch000549.htm
关于android - 如何设置环境变量 GOOGLE_APPLICATION_CREDENTIALS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50019736/
我正在开发一个需要使用 Google OAUTH 2 进行服务器到服务器应用程序的 CMS 模块。根据official manual需要设置一个带有 .json 键路径的环境变量,如下所示: pute
目前必须将 Google Cloud Platform 服务集成到我的应用程序中,但收到以下异常: **W/System.err: java.io.IOException: The Applicati
我的目标是使用 Google Cloud API 之一,为此我需要将 GOOGLE_APPLICATION_CREDENTIALS 设置为 .json 文件。 我收到此错误消息以及有关如何解决该问题的
我知道以前有人问过这种类型的问题,我已经解决了这个问题,但仍然面临这个问题。我用的是 this example .但是当我运行我的代码时,我遇到了以下异常 Failed to detect wheth
我们在一个谷歌服务帐户中有多个项目,每个项目都有单独的 GOOGLE_APPLICATION_CREDENTIALS .json 文件。根据基于语言环境的要求和 projectID我们必须使用相关的凭
在本地运行我的 java 项目会出现 GOOGLE_APPLICATION_CREDENTIALS 异常。 异常(exception)情况是: ConfigServletWebServerApplic
我有一个使用 Google Vision API 和 Google Video intelligence API 的 Go 应用程序。为了输入我的凭据,我设置了名为 GOOGLE_APPLICATIO
我尝试使用 Google Speach Api 我在身份验证方面遇到了大问题。 我关注了这个tutorial ,然后导出 GOOGLE_APPLICATION_CREDENTIALS,并使用 echo
我需要为我的应用程序使用“Google speech API”。为此,我安装了“谷歌云存储SDK”。我点击了这个链接“https://cloud.google.com/sdk/docs/quickst
当我在本地机器(Windows)上运行文档示例时,我设置了指向 json 文件的环境变量并且它可以工作。如果路径不正确,它会警告我也找不到该文件。 // Imports the Google Clou
我正在尝试使用 google 语音 API 将音频文件转换为文本,但在文档方面遇到了一些问题。我已启用语音 API 并创建了一个服务帐户文件。我还激活了服务帐户凭据。然后我编写了以下命令来使用我的服务
我想使用我的 key.json 在我的 docker 容器中设置 GOOGLE_APPLICATION_CREDENTIALS文件,但我不想将此文件复制到我的容器中。 最佳答案 docker run
我正在尝试使用 Spring 访问 Google 存储桶中的文件,最终目标是使用 MultiResourceItemReader 从存储桶中读取多个 XML 文件。当 XML 文件在我的本地机器(不是
我正在使用 gcloud 为 Django 编写自定义文件存储。 并且在寻找服务帐户 JSON 的 gloud 路径方面存在问题。我尝试使用 GOOGLE_APPLICATION_CREDENTIAL
google docs假设使用服务帐户的 JSON key 的路径导出环境变量 GOOGLE_APPLICATION_CREDENTIALS,gcloud 将使用它。我无法让它工作。 我的命令是: G
在我的 serverless.yml 文件中,我试图添加一个名为 GOOGLE_APPLICATION_CREDENTIALS 的环境变量,它指向我的服务帐户凭据 JSON 文件,但是当添加到无服务器
我正在我的 Mac 上使用 VSCode 在我的 Django 项目上测试 Google Cloud Pub/Sub,我在调试测试期间设置 GCP 环境变量时遇到了一些问题,特别是 GOOGLE_AP
我正在尝试在 java 中使用谷歌视觉库。这些步骤指定我需要设置我的身份验证凭据才能开始使用 this图书馆 。我能够从 API 控制台凭据页面生成我的 json 属性文件,并将其放置在资源文件夹中的
我正在使用 Laravel 5.2 并且我使用 php artisan config:cache正如官方文档中建议的那样,以提高速度。 如您所知,此命令使 .env 文件变量直接不可访问(您可以使用
在 kubernetes 的帮助下,我在 GKE 上运行日常作业,每天基于 kubernetes 中配置的 cron 启动一个新容器并尝试将一些数据插入 BigQuery。 我们的设置是我们在一个项目
我是一名优秀的程序员,十分优秀!