我想从API获取信息(数据)并显示它。使用API从Big Query提取数据。
目前,我已经编写了可能假设要显示API信息的代码,但是我不确定如何将服务帐户用作环境。
package main
import (
"fmt"
"io/ioutil"
"net/http"
"os"
)
func main() {
response, err := http.Get("https://www.googleapis.com/bigquery/v2/projects/PROJECT_ID/queries/JOB_ID")
if err != nil {
fmt.Printf("%s", err)
os.Exit(1)
} else {
defer response.Body.Close()
contents, err := ioutil.ReadAll(response.Body)
if err != nil {
fmt.Printf("%s", err)
os.Exit(1)
}
fmt.Printf("%s\n", string(contents))
}
}
预期结果应该只是显示来自API的数据,然后我需要创建一个无需使用参数进行身份验证即可访问的API(作为GET方法)
P.S。这是指向API的链接-https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/getQueryResults
答案 0 :(得分:2)
如果您查看文档,则会注意到它的统计信息Jobs: getQueryResults,其中指出您所调用的方法要求您通过以下范围之一进行身份验证。
您尝试访问的数据是私人用户数据,您必须经过身份验证才能访问私人用户数据。您似乎没有试图以任何方式进行身份验证。
您创建的服务帐户credentalis应该在代码中使用,以向Google发送授权请求
您可以在此处找到有关如何使用服务帐户进行身份验证的信息。 introduction to authentication
启用凭据
export GOOGLE_APPLICATION_CREDENTIALS="[PATH]"
export GOOGLE_APPLICATION_CREDENTIALS="/home/user/Downloads/[FILE_NAME].json"
代码
// Sample bigquery-quickstart creates a Google BigQuery dataset.
package main
import (
"fmt"
"log"
// Imports the Google Cloud BigQuery client package.
"cloud.google.com/go/bigquery"
"golang.org/x/net/context"
)
func main() {
ctx := context.Background()
// Sets your Google Cloud Platform project ID.
projectID := "YOUR_PROJECT_ID"
// Creates a client.
client, err := bigquery.NewClient(ctx, projectID)
if err != nil {
log.Fatalf("Failed to create client: %v", err)
}
// Sets the name for the new dataset.
datasetName := "my_new_dataset"
// Creates the new BigQuery dataset.
if err := client.Dataset(datasetName).Create(ctx, &bigquery.DatasetMetadata{}); err != nil {
log.Fatalf("Failed to create dataset: %v", err)
}
fmt.Printf("Dataset created\n")
}