准备工作 (v3)

设置

要在数据日志记录中注册您的 Google Cloud Platform 项目(GCP 项目),请按以下步骤操作:

  1. 转到 GCP Console
    如果您尚未设置 Google Cloud 项目,则必须创建项目
  2. 转到 GCP 信息中心中的 Cloud Talent Solution 项目设置。 要查看导航,请点击左上角的汉堡图标,然后向下滚动并选择人工智能下的 Talent Solution

    从下拉列表中选择您的项目。
  3. 如果您没有与此 Google Cloud 项目关联的结算账号,系统会提示您先设置结算账号,然后将其关联到此 Google Cloud 项目。 请注意,只有 Google Cloud 项目所有者和结算账号的所有者才能将其关联起来。
    1. 点击启用结算功能

      此时为项目启用结算功能对话框将显示。
    2. 点击创建结算帐号。请参阅创建、修改或关闭您的结算帐号
  4. 启用 API
    点击启用

  5. 此时信息中心页面将显示。
    点击数据日志记录标签页。

  6. 数据日志记录选择启用页面将显示。 接受该页面上列出的条款后,就可以使用各种 API 功能。如果不接受这些条款,您将只能使用删除 API 请求。

    点击启用

    此时确认页面将显示。
  7. 点击确认页面上的继续


    此时关联服务账号视图将显示。

  8. 关联服务账号
    如果您已经为 Google Cloud 项目创建服务账号,则会在此处看到服务账号列表,否则,请点击管理服务账号。如需查看相关说明,请参阅创建服务账号



    创建服务账号时,请同时勾选提供新的私钥文本框。系统会自动下载新的 JSON 凭据文件。将此文件存储在服务器上的特定位置,然后按照instructionsGOOGLE_APPLICATION_CREDENTIALS 环境变量设置为指向此文件。这是对发至 Cloud Talent Solution 的请求进行身份验证的重要步骤。

  9. 创建服务账号后,导航回 Cloud Talent Solution 左侧导航标签。 您创建的服务账号即会显示。 点击关联将此账号与 Cloud Talent Solution 关联起来。

  10. 此时账号即已关联。
    点击完成以继续。

  11. 现在,您可以开始将 Cloud Talent Solution 集成到您的系统中了。

  12. 项目 ID 设置为环境。

    LINUX 或 MACOS

    export GOOGLE_CLOUD_PROJECT="your-project-id"

    WINDOWS

    使用 PowerShell:

    $env:GOOGLE_CLOUD_PROJECT="your-project-id"

    使用命令提示符:

    set GOOGLE_CLOUD_PROJECT="your-project-id"
  13. 接下来,转到创建公司和职位快速入门,开始集成 Cloud Talent Solution。

安装客户端库

Java

如需详细了解如何安装和创建 Cloud Talent Solution 客户端,请参阅 Cloud Talent Solution 客户端库

如果您使用的是 Maven,请将以下内容添加到您的 pom.xml 文件中:

  <dependency>
      <groupId>com.google.apis</groupId>
      <artifactId>google-api-services-jobs</artifactId>
      <version>LATEST</version>
  </dependency>
  

Python

如需详细了解如何安装和创建 Cloud Talent Solution 客户端,请参阅 Cloud Talent Solution 客户端库

pip install --upgrade google-api-python-client

Node.js

如需详细了解如何安装和创建 Cloud Talent Solution 客户端,请参阅 Cloud Talent Solution 客户端库

npm install --save googleapis

Go

如需详细了解如何安装和创建 Cloud Talent Solution 客户端,请参阅 Cloud Talent Solution 客户端库

go get google.golang.org/api/jobs/v3

发出请求

Java

如需详细了解如何安装和创建 Cloud Talent Solution 客户端,请参阅 Cloud Talent Solution 客户端库


private static final JsonFactory JSON_FACTORY = new GsonFactory();
private static final NetHttpTransport NET_HTTP_TRANSPORT = new NetHttpTransport();
private static final String DEFAULT_PROJECT_ID =
    "projects/" + System.getenv("GOOGLE_CLOUD_PROJECT");

private static CloudTalentSolution talentSolutionClient =
    createTalentSolutionClient(generateCredential());

private static CloudTalentSolution createTalentSolutionClient(GoogleCredentials credential) {
  String url = "https://jobs.googleapis.com";

  HttpRequestInitializer requestInitializer =
      request -> {
        new HttpCredentialsAdapter(credential).initialize(request);
        request.setConnectTimeout(60000); // 1 minute connect timeout
        request.setReadTimeout(60000); // 1 minute read timeout
      };

  return new CloudTalentSolution.Builder(NET_HTTP_TRANSPORT, JSON_FACTORY, requestInitializer)
      .setApplicationName("JobServiceClientSamples")
      .setRootUrl(url)
      .build();
}

private static GoogleCredentials generateCredential() {
  try {
    // Credentials could be downloaded after creating service account
    // set the `GOOGLE_APPLICATION_CREDENTIALS` environment variable, for example:
    // export GOOGLE_APPLICATION_CREDENTIALS=/path/to/your/key.json
    return GoogleCredentials.getApplicationDefault()
        .createScoped(Collections.singleton(CloudTalentSolutionScopes.JOBS));
  } catch (Exception e) {
    System.out.println("Error in generating credential");
    throw new RuntimeException(e);
  }
}

public static CloudTalentSolution getTalentSolutionClient() {
  return talentSolutionClient;
}

public static void main(String... args) throws Exception {
  try {
    ListCompaniesResponse listCompaniesResponse =
        talentSolutionClient.projects().companies().list(DEFAULT_PROJECT_ID).execute();
    System.out.println("Request Id is " + listCompaniesResponse.getMetadata().getRequestId());
    if (listCompaniesResponse.getCompanies() != null) {
      for (Company company : listCompaniesResponse.getCompanies()) {
        System.out.println(company.getName());
      }
    }
  } catch (IOException e) {
    System.out.println("Got exception while listing companies");
    throw e;
  }
}

Python

如需详细了解如何安装和创建 Cloud Talent Solution 客户端,请参阅 Cloud Talent Solution 客户端库

import os

from googleapiclient.discovery import build
from googleapiclient.errors import Error

client_service = build("jobs", "v3")

def run_sample():
    try:
        project_id = "projects/" + os.environ["GOOGLE_CLOUD_PROJECT"]
        response = (
            client_service.projects().companies().list(parent=project_id).execute()
        )
        print("Request Id: %s" % response.get("metadata").get("requestId"))
        print("Companies:")
        if response.get("companies") is not None:
            for company in response.get("companies"):
                print("%s" % company.get("name"))
        print("")

    except Error as e:
        print("Got exception while listing companies")
        raise e

if __name__ == "__main__":
    run_sample()

Go

如需详细了解如何安装和创建 Cloud Talent Solution 客户端,请参阅 Cloud Talent Solution 客户端库


// Command quickstart is an example of using the Google Cloud Talent Solution API.
package main

import (
	"context"
	"fmt"
	"log"
	"os"

	"golang.org/x/oauth2/google"
	talent "google.golang.org/api/jobs/v3"
)

func main() {
	projectID := os.Getenv("GOOGLE_CLOUD_PROJECT")
	parent := fmt.Sprintf("projects/%s", projectID)

	// Authorize the client using Application Default Credentials.
	// See https://g.co/dv/identity/protocols/application-default-credentials
	ctx := context.Background()
	client, err := google.DefaultClient(ctx, talent.CloudPlatformScope)
	if err != nil {
		log.Fatal(err)
	}

	// Create the jobs service client.
	ctsService, err := talent.New(client)
	if err != nil {
		log.Fatal(err)
	}

	// Make the RPC call.
	response, err := ctsService.Projects.Companies.List(parent).Do()
	if err != nil {
		log.Fatalf("Failed to list Companies: %v", err)
	}

	// Print the request id.
	fmt.Printf("Request ID: %q\n", response.Metadata.RequestId)

	// Print the returned companies.
	for _, company := range response.Companies {
		fmt.Printf("Company: %q\n", company.Name)
	}
}