为了使用OAuth凭证访问BigQuery,需要使用Google Cloud的Python SDK和Google API的Python客户端库。下面是具体的
pip install --upgrade google-cloud-bigquery
from oauth2client.client import GoogleCredentials
credentials = GoogleCredentials.get_application_default()
from google.cloud import bigquery
client = bigquery.Client(project='project_id', credentials=credentials)
query_job = client.query("""
SELECT COUNT(*) as count
FROM `project_id.dataset.table`
""")
results = query_job.result()
for row in results:
print(row.count)
注意:在应用程序运行之前,需要先设置Google Cloud项目的客户端ID和密钥。详细信息可以在Google Cloud Console中找到。
此外,还可以使用Google Cloud Platform中的Service Account来代表应用程序进行身份验证。这个过程与上述步骤类似,只不过要使用Service Account的JSON凭证文件而不是OAuth凭证。