我正在使用python和google cloud speech api,我在ubuntu和windows上都执行了"How to use google speech recognition api in python?“中的所有步骤,当我试图从这里运行简单的脚本时-- "https://github.com/GoogleCloudPlatform/python-docs-samples/blob/master/speech/api/speech_rest.py”
我得到了下一个错误:<HttpError 403 when requesting https://speech.googleapis.com/$discovery/rest?version=v1beta1 returned "Google Cloud Speech API has not been used in project google.com:cloudsdktool before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/speech.googleapis.com/overview?project=google.com:cloudsdktool then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.">
奇怪的是,我没有名为"cloudsdktool“的项目。
我运行"gcloud init",并使用"gcloud auth activate- service -account -- key - file =jsonfile“命令链接我创建服务帐户密钥时获得的json文件,我尝试在linux中创建google credentials环境变量,但仍然得到相同的消息
发布于 2016-10-20 08:58:20
所以我找到了两种方法来解决这个问题:
1-如果使用google cloud sdk并且cloud speech是beta版本,您需要运行'gcloud beta init‘而不是'gcloud init’,然后提供json文件
2-如果你不想使用google的云sdk,你可以直接在python应用中传递json文件
以下是实现此目的的方法:
from oauth2client.client import GoogleCredentials
GoogleCredentials.from_stream('path/to/your/json')
然后,您只需在凭证和授权上创建作用域,或者如果使用grpc(流),则将其传递到头部,就像示例中一样。
下面是grpc更改后的脚本:
def make_channel(host, port):
"""Creates an SSL channel with auth credentials from the environment."""
# In order to make an https call, use an ssl channel with defaults
ssl_channel = implementations.ssl_channel_credentials(None, None, None)
# Grab application default credentials from the environment
creds = GoogleCredentials.from_stream('path/to/your/json').create_scoped([SPEECH_SCOPE])
# Add a plugin to inject the creds into the header
auth_header = (
'Authorization',
'Bearer ' + creds.get_access_token().access_token)
auth_plugin = implementations.metadata_call_credentials(
lambda _, cb: cb([auth_header], None),
name='google_creds')
# compose the two together for both ssl and google auth
composite_channel = implementations.composite_channel_credentials(
ssl_channel, auth_plugin)
return implementations.secure_channel(host, port, composite_channel)
https://stackoverflow.com/questions/38881510
复制相似问题