Google Cloud授权因Python 3不断失败-类型为None,应为('authorized_user','service_account')中的一种

时间:2018-12-13 22:10:51

标签: google-cloud-storage google-authentication

我正尝试首次从Google Cloud Storage下载文件。

我将路径设置为从https://cloud.google.com/storage/docs/reference/libraries#client-libraries-usage-python下载的googstruct.json服务帐户密钥文件

是否需要以某种方式在代码之外设置对Google Cloud的授权?还是有比Google网站上更好的“如何使用Google Cloud Storage”?
好像我将错误的类型传递给 storage_client = storage.Client() 异常字符串在下面。

Exception has occurred: google.auth.exceptions.DefaultCredentialsError
The file C:\Users\Cary\Documents\Programming\Python\QGIS\GoogleCloud\googstruct.json does not have a valid type. 
Type is None, expected one of ('authorized_user', 'service_account').

我的PYTHON 3.7代码

from google.cloud import storage
import os

os.environ["GOOGLE_APPLICATION_CREDENTIALS"]=
                                          "C:\\GoogleCloud\\googstruct.json"

# Instantiates a client
storage_client = storage.Client()
bucket_name = 'structure_ssi'
destination_file_name = "C:\\Users\\18809_PIPEM.shp"
source_blob_name = '18809_PIPEM.shp'
download_blob(bucket_name, source_blob_name, destination_file_name)

def download_blob(bucket_name, source_blob_name, destination_file_name):
    """Downloads a blob from the bucket."""
    storage_client = storage.Client()
    bucket = storage_client.get_bucket(bucket_name)
    blob = bucket.blob(source_blob_name)

    blob.download_to_filename(destination_file_name)

    print('Blob {} downloaded to {}.'.format(
        source_blob_name,
        destination_file_name))

我确实看过这个,但是我不能确定这是否是我的问题。我都尝试过。

('Unexpected credentials type', None, 'Expected', 'service_account') with oauth2client (Python)

1 个答案:

答案 0 :(得分:1)

此错误表示您尝试使用C:\\GoogleCloud\\googstruct.json的Json服务帐户凭据已损坏或类型错误。

文件googstruct.json中的第一行(或第二行)应为"type": "service_account"

另外一些可以改善您代码的项目:

  1. 您无需使用\\,只需使用/即可简化代码 更干净的阅读方式。
  2. 直接加载您的凭据,并且不修改环境 变量:

storage_client = storage.Client.from_service_account_json('C:/GoogleCloud/googstruct.json')

  1. 在try / except中包装API调用。堆栈跟踪不会打动客户。最好有清晰,简单,易于阅读的错误消息。