gpt4 book ai didi

php - Bigquery + PHP 示例

转载 作者:可可西里 更新时间:2023-11-01 13:36:29 26 4
gpt4 key购买 nike

有人可以提供将 Bigquery API 与 PHP 结合使用的工作示例吗?我看到有 python 和 java 的示例,但找不到 PHP 的任何示例。

这是 bigquery 浏览器 https://bigquery.cloud.google.com/?pli=1

例如,您可以在浏览器中运行此 SQL

SELECT corpus,count(*) FROM publicdata:samples.shakespeare 
group by corpus limit 5;

我想通过 PHP 模拟类似的调用。

即使是关于如何使用 PHP API 的粗略示例也会有很大帮助。

最佳答案

使用适用于 PHP 的 Google API 客户端。下面是执行单个同步查询作业的脚本的简单示例。这使用在可下载的 API 客户端中找到的类名。注意:从 SVN 中提取的源具有不同的类名。请注意您必须在何处为客户端密码、客户端 ID、重定向 URI 和项目 ID 添加您自己的值。

<?php

require_once 'google-api-php-client/src/apiClient.php';
require_once 'google-api-php-client/src/contrib/apiBigqueryService.php';

session_start();

$client = new apiClient();
// Visit https://developers.google.com/console to generate your
// oauth2_client_id, oauth2_client_secret, and to register your oauth2_redirect_uri.

$client->setClientId('XXXXXXXXXXXXXXX.apps.googleusercontent.com');
$client->setClientSecret('XXXXXXXXXXXXXXXXXXX');
$client->setRedirectUri('http://www_your_domain.com/somescript.php');

// Your project id
$project_id = 'XXXXXXXXXXXXXXXXXXXX';

// Instantiate a new BigQuery Client
$bigqueryService = new apiBigqueryService($client);

if (isset($_REQUEST['logout'])) {
unset($_SESSION['access_token']);
}

if (isset($_SESSION['access_token'])) {
$client->setAccessToken($_SESSION['access_token']);
} else {
$client->setAccessToken($client->authenticate());
$_SESSION['access_token'] = $client->getAccessToken();
}

if (isset($_GET['code'])) {
$redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
}
?>
<!doctype html>
<html>
<head>
<title>BigQuery API Sample</title>
</head>
<body>
<div id='container'>
<div id='top'><h1>BigQuery API Sample</h1></div>
<div id='main'>
<?php
$query = new QueryRequest();
$query->setQuery('SELECT TOP( title, 10) as title, COUNT(*) as revision_count FROM [publicdata:samples.wikipedia] WHERE wp_namespace = 0;');

$jobs = $bigqueryService->jobs;
$response = $jobs->query($project_id, $query);

// Do something with the BigQuery API $response data
print_r($response);

?>
</div>
</div>
</body>
</html>

关于php - Bigquery + PHP 示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12413717/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com